diff --git a/.babelrc b/.babelrc
index a9ce1369..ae09dd2a 100644
--- a/.babelrc
+++ b/.babelrc
@@ -1,3 +1,3 @@
{
- "presets": ["react-native"]
+ "presets": ["react-native"]
}
diff --git a/.buckconfig b/.buckconfig
new file mode 100644
index 00000000..934256cb
--- /dev/null
+++ b/.buckconfig
@@ -0,0 +1,6 @@
+
+[android]
+ target = Google Inc.:Google APIs:23
+
+[maven_repositories]
+ central = https://repo1.maven.org/maven2
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 00000000..d42ff183
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+*.pbxproj -text
diff --git a/.gitignore b/.gitignore
index 004d447a..0cbf3701 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,4 +3,4 @@ node_modules/
.idea/
npm-debug.log
-poc.js
+__tst.js
diff --git a/.npmignore b/.npmignore
index 5bf515b8..694faabc 100644
--- a/.npmignore
+++ b/.npmignore
@@ -2,3 +2,10 @@ node_modules/
.vscode/
.idea/
npm-debug.log
+android/
+ios/
+App.js
+app.json
+index.js
+.watchmanconfig
+.buckconfig
\ No newline at end of file
diff --git a/.watchmanconfig b/.watchmanconfig
new file mode 100644
index 00000000..9e26dfee
--- /dev/null
+++ b/.watchmanconfig
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/App.js b/App.js
new file mode 100644
index 00000000..8029a171
--- /dev/null
+++ b/App.js
@@ -0,0 +1,85 @@
+/**
+ * Sample React Native App
+ * https://github.com/facebook/react-native
+ * @flow
+ */
+
+import React, { Component } from 'react'
+import { StyleSheet, View } from 'react-native'
+import { TextInputMask } from './rnmt'
+
+export default class App extends Component {
+ state = {
+ datetime: '',
+ creditCard: '',
+ custom: '',
+ money: ''
+ }
+ render() {
+ return (
+
+ this.setState({ datetime })}
+ />
+ {
+ this.setState({ creditCard })
+ console.log(this.state)
+ }}
+ />
+ {
+ this.setState({ custom })
+ console.log(this.state)
+ }}
+ />
+ {
+ this.setState({ money })
+ console.log(this.state)
+ }}
+ />
+
+ )
+ }
+}
+
+const styles = StyleSheet.create({
+ container: {
+ flex: 1,
+ justifyContent: 'center',
+ alignItems: 'center',
+ backgroundColor: '#F5FCFF'
+ },
+ input: {
+ height: 50,
+ width: '80%',
+ borderColor: 'steelblue',
+ borderWidth: 2
+ }
+})
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f0bb6b09..2df3536f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,115 +1,129 @@
# Changelog
+## [1.9.0] - 2018-09-08
+
+## Changed
+
+- Custom Mask: now all the masks use the core from Custom Mask.
+- Adding some docs about how to use methods.
+
+### PRs
+
+- [74 - Updated Typescript definition file](https://github.com/benhurott/react-native-masked-text/pull/74). (thanks to [iiandrade](https://github.com/iiandrade))
+- [80 - TypeScript support for custom mask options](https://github.com/benhurott/react-native-masked-text/pull/80). (thanks to [enagorny](https://github.com/enagorny))
+- [88 - Moved typings dependencies to devDependencies](https://github.com/benhurott/react-native-masked-text/pull/88). (thanks to [emiyake](https://github.com/emiyake))
+- [90 - add cpf-cnpj mask to auto-detect if the document is a CPF or CNPJ](https://github.com/benhurott/react-native-masked-text/pull/90). (thanks to [ronaldozanoni](https://github.com/ronaldozanoni))
+
## 1.7.2
-* Fixing [ISSUE#79](https://github.com/benhurott/react-native-masked-text/issues/79). (thanks to [herlan-evocorp](https://github.com/herlan-evocorp))
+- Fixing [ISSUE#79](https://github.com/benhurott/react-native-masked-text/issues/79). (thanks to [herlan-evocorp](https://github.com/herlan-evocorp))
## 1.7.1
-* Updating moment lib.
+- Updating moment lib.
## 1.7.0
-* Adding `ts definitions`. (thanks to [iiandrade](https://github.com/iiandrade))
-* Adding `toRawValue` method to MaskService. (thanks to [fabioh8010](https://github.com/fabioh8010))
-* Replace old legacy ref string by the new callback. (thanks to [Yamilquery](https://github.com/Yamilquery))
+- Adding `ts definitions`. (thanks to [iiandrade](https://github.com/iiandrade))
+- Adding `toRawValue` method to MaskService. (thanks to [fabioh8010](https://github.com/fabioh8010))
+- Replace old legacy ref string by the new callback. (thanks to [Yamilquery](https://github.com/Yamilquery))
## 1.6.5
-* Fixing validation for CPF and CNPJ when empty string is inputed. (thanks to [gabuael](https://github.com/gabuael))
+- Fixing validation for CPF and CNPJ when empty string is inputed. (thanks to [gabuael](https://github.com/gabuael))
## 1.6.4
-* Fixing wrong format when use money mask and values with only one decimal place (`1.9`) (thanks to [Pablo](https://github.com/rochapablo)).
+- Fixing wrong format when use money mask and values with only one decimal place (`1.9`) (thanks to [Pablo](https://github.com/rochapablo)).
## 1.6.3
-* Fixing moment version (thanks to [Edward Coleridge Smith](https://github.com/edcs))
-* Adding pre-builded lib to improve build phase (thanks to [Giorgi Bagdavadze](https://github.com/notgiorgi))
+- Fixing moment version (thanks to [Edward Coleridge Smith](https://github.com/edcs))
+- Adding pre-builded lib to improve build phase (thanks to [Giorgi Bagdavadze](https://github.com/notgiorgi))
## 1.6.2
-* Fixing custom mask when removing value in middle of the text. (thanks to [Aleksandr Kompaniets](https://github.com/Oxyaction))
- _ KNOW ISSUE: the custom mask is not allowing user to input white spaces for `_` translation temporarily.
+- Fixing custom mask when removing value in middle of the text. (thanks to [Aleksandr Kompaniets](https://github.com/Oxyaction))
+ _ KNOW ISSUE: the custom mask is not allowing user to input white spaces for `_` translation temporarily.
## 1.6.1
-* Fixing duplicated custom text input component. (thanks to [Pablo](https://github.com/rochapablo))
+- Fixing duplicated custom text input component. (thanks to [Pablo](https://github.com/rochapablo))
## 1.6.0
-* Add compatibility to [react-native-textinput-effects](https://github.com/halilb/react-native-textinput-effects) by using `customTextInputProps` (thanks to [Pablo](https://github.com/rochapablo))
+- Add compatibility to [react-native-textinput-effects](https://github.com/halilb/react-native-textinput-effects) by using `customTextInputProps` (thanks to [Pablo](https://github.com/rochapablo))
## 1.5.3
-* Fix suffix backspace (thanks to [Thomas Kekeisen](https://github.com/blaues0cke))
-* Fix last character on custom mask (thanks to [Daniel Maly](https://github.com/DanielMaly))
+- Fix suffix backspace (thanks to [Thomas Kekeisen](https://github.com/blaues0cke))
+- Fix last character on custom mask (thanks to [Daniel Maly](https://github.com/DanielMaly))
## 1.5.2
-* Adding `keyboardType` to custom mask. (thanks to [Nurbek Abulgazin](https://github.com/nurbek-ab))
+- Adding `keyboardType` to custom mask. (thanks to [Nurbek Abulgazin](https://github.com/nurbek-ab))
## 1.5.1
-* Adding `tinymask` to fix some custom mask issues.
+- Adding `tinymask` to fix some custom mask issues.
## 1.5.0
-* Adding new and powerfull `custom` engine mask \m/.
+- Adding new and powerfull `custom` engine mask \m/.
## 1.4.0
-* Adding `customTextInput` to allow other inputs instead native TextInput. (thanks to [Hellon Canella](https://github.com/helloncanella))
+- Adding `customTextInput` to allow other inputs instead native TextInput. (thanks to [Hellon Canella](https://github.com/helloncanella))
## 1.3.4
-* Remove default value from mask to allow placeholder on text-input (thanks to [Cuong Hoang](https://github.com/cuonghv91)). \* Please, caution. This can cause some runtime breaking if you update to this version.
+- Remove default value from mask to allow placeholder on text-input (thanks to [Cuong Hoang](https://github.com/cuonghv91)). \* Please, caution. This can cause some runtime breaking if you update to this version.
## 1.3.3
-* Update dependencies (thanks to [Vlad-Zhukov](https://github.com/Vlad-Zhukov))
+- Update dependencies (thanks to [Vlad-Zhukov](https://github.com/Vlad-Zhukov))
## 1.3.2
-* Fix: ignoring Jet Brains ide files (thanks to [Vlad-Zhukov](https://github.com/Vlad-Zhukov))
+- Fix: ignoring Jet Brains ide files (thanks to [Vlad-Zhukov](https://github.com/Vlad-Zhukov))
## 1.3.1
-* Performance: adding check if the next value to be applied to the mask is equal as actual and prevent state change.
+- Performance: adding check if the next value to be applied to the mask is equal as actual and prevent state change.
## 1.3.0
-* Feat: now you can check and prevent input text on `TextInputMask` using `checkText` prop.
+- Feat: now you can check and prevent input text on `TextInputMask` using `checkText` prop.
## 1.2.2
-* Fix: fixing es2015 preset (thanks to [vagnercsouza](https://github.com/vagnercsouza), [barakcoh](https://github.com/barakcoh), Marvin Santos)
+- Fix: fixing es2015 preset (thanks to [vagnercsouza](https://github.com/vagnercsouza), [barakcoh](https://github.com/barakcoh), Marvin Santos)
## 1.2.1
-* Fix: fixing white space after unit on money mask.
+- Fix: fixing white space after unit on money mask.
## 1.2.0
-* Adding `getRawValue`.
+- Adding `getRawValue`.
## 1.1.1
-* Fixing toolbox-service reference (thanks to [ziftinpeki](https://github.com/ziftinpeki)).
+- Fixing toolbox-service reference (thanks to [ziftinpeki](https://github.com/ziftinpeki)).
## 1.1.0
-* Adding credit-card mask.
-* Refactoring base mask to contain helpfull functions.
+- Adding credit-card mask.
+- Refactoring base mask to contain helpfull functions.
## 1.0.0
-* Adding datetime and cnpj masks.
-* [Breaking Change] Refactoring MaskService.
-* Separate mask handlers for better extensibility.
-* Adding tests for all mask handlers.
-* Refactoring Components for use new mask handlers.
+- Adding datetime and cnpj masks.
+- [Breaking Change] Refactoring MaskService.
+- Separate mask handlers for better extensibility.
+- Adding tests for all mask handlers.
+- Refactoring Components for use new mask handlers.
## 0.3.6
-* Fix vanilla-mask path on windows.
\ No newline at end of file
+- Fix vanilla-mask path on windows.
diff --git a/README.md b/README.md
index 428a55b6..428d9efd 100644
--- a/README.md
+++ b/README.md
@@ -2,10 +2,9 @@
[![Help Contribute to Open Source](https://www.codetriage.com/benhurott/react-native-masked-text/badges/users.svg)](https://www.codetriage.com/benhurott/react-native-masked-text)
-This is a simple masked text (normal text and input text) component for React-Native.
+![logo](docs/res/logo.png)
-Thanks to [vanilla-masker](https://github.com/BankFacil/vanilla-masker) =).
-Thanks to [moment](http://momentjs.com/) =).
+This is a simple masked text (normal text and input text) component for React-Native.
## Supported Versions
@@ -28,7 +27,7 @@ export default class MyComponent extends Component {
super(props)
}
- isValid() {
+ componentDidMount() {
// isValid method returns if the inputed value is valid.
// Ex: if you input 40/02/1990 30:20:20, it will return false
// because in this case, the day and the hour is invalid.
@@ -183,9 +182,9 @@ const styles = StyleSheet.create({
You can use the native props of TextInput, with this in mind:
-* onChangeText is intercepted by component.
-* value is intercepted by component.
-* if you pass keyboardType, it will override the keyboardType of masked component.
+- onChangeText is intercepted by component.
+- value is intercepted by component.
+- if you pass keyboardType, it will override the keyboardType of masked component.
#### TextInput Methods
@@ -193,31 +192,31 @@ If you want to use the methods of the native TextInput, use the `getElement()` m
```jsx
export default class App extends React.Component {
- onGoFocus() {
- // when you call getElement method, the instance of native TextInput will returned.
- this.refs['myText'].getElement().focus()
- }
+ onGoFocus() {
+ // when you call getElement method, the instance of native TextInput will returned.
+ this._myTextInputMask.getElement().focus()
+ }
- render() {
- return (
-
-
-
-
-
-
-
-
- )
- }
+ render() {
+ return (
+
+
+ (this._myTextInputMask = ref)}
+ type={'only-numbers'}
+ style={styles.input}
+ />
+
+
+
+
+
+ )
+ }
}
```
@@ -227,35 +226,36 @@ Some types accept options, use it like this: `
-* _options={...}_
- _ `precision` (Number, default 2): the decimal places.
- _ `separator` (String, default ','): the decimal separator.
- _ `delimiter` (String, default '.'): the thousand separator.
- _ `unit`: (String, default 'R$'): the prefix text.
- _ `suffixUnit` (String, default ''): the suffix text.
- _ `zeroCents` (Boolean, default false): if must show cents.
+- _options={...}_
+ - `precision` (Number, default 2): the decimal places.
+ - `separator` (String, default ','): the decimal separator.
+ - `delimiter` (String, default '.'): the thousand separator.
+ - `unit`: (String, default 'R$'): the prefix text.
+ - `suffixUnit` (String, default ''): the suffix text.
+ - `zeroCents` (Boolean, default false): if must show cents.
**For `type={'cel-phone'}`**
-* _options={...}_
- _ `withDDD` (Boolean, default true): if the ddd will be include in the mask.
- _ `dddMask` (String, default '(99) '): the default mask applied if `withDDD` is true.
+- _options={...}_
+ - `withDDD` (Boolean, default true): if the ddd will be include in the mask.
+ - `dddMask` (String, default '(99) '): the default mask applied if `withDDD` is true.
**For `type={'datetime'}`**
-* _options={...}_
- _ `format` (String, default DD/MM/YYYY HH:mm:ss): moment date format. It accepts the following:
- _ DD/MM/YYYY HH:mm:ss
- _ DD/MM/YYYY
- _ MM/DD/YYYY
- _ YYYY/MM/DD
- _ HH:mm:ss
- _ HH:mm
- _ HH \* _You can use all of dates with `-` instead of `/` if you want_
+- _options={...}_
+ - `format` (String, default DD/MM/YYYY HH:mm:ss): moment date format. It accepts the following:
+ - DD/MM/YYYY HH:mm:ss
+ - DD/MM/YYYY
+ - MM/DD/YYYY
+ - YYYY/MM/DD
+ - HH:mm:ss
+ - HH:mm
+ - HH
+ - _You can use all of dates with `-` instead of `/` if you want_
**For `type={'custom'}`**
-* _options={...}_
+- _options={...}_
```jsx
{
@@ -312,13 +312,85 @@ Some types accept options, use it like this: `
-* _options={...}_ \* `obfuscated` (Boolean, default false): if the mask must be `9999 **** **** 9999`
+- _options={...}_ \* `obfuscated` (Boolean, default false): if the mask must be `9999 **** **** 9999`
### Methods
-* `getElement()`: return the instance of _TextInput_ component.
-* `isValid()`: if the value inputed is valid for the mask. \* _credit-card_: return true if the mask is complete. \* _cpf_: return true if the mask is complete and cpf is valid. \* _cnpj_: return true if the mask is complete and cnpj is valid. \* _zip-code_: return true if the mask is complete. \* _only-numbers_: always returns true. \* _money_: always returns true. \* _cel-phone_: return true if the mask is complete. \* _datetime_: return true if the date value is valid for format. \* _custom_: use custom validation, if it not exist, always returns true.
-* `getRawValue()`: get the converted value of mask. \* _credit-card_: return the array with the value parts. Ex: `1234 1234 1234 1234` returns `[1234, 1234, 1234, 1234]`. \* _cpf_: return the value without mask. \* _cnpj_: return the value without mask. \* _zip-code_: return the value without mask. \* _only-numbers_: return the value without mask. \* _money_: return the Number value. Ex: `R$ 1.234,56` returns `1234.56`. \* _cel-phone_: return the value without mask. \* _datetime_: return the `moment` object for the date and format. \* _custom_: use custom method (passed in options). If it not exists, returns the current value.
+- `getElement()`: return the instance of _TextInput_ component.
+- `isValid()`: if the value inputed is valid for the mask.
+ - _credit-card_: return true if the mask is complete.
+ - _cpf_: return true if the mask is complete and cpf is valid.
+ - _cnpj_: return true if the mask is complete and cnpj is valid.
+ - _zip-code_: return true if the mask is complete.
+ - _only-numbers_: always returns true.
+ - _money_: always returns true.
+ - _cel-phone_: return true if the mask is complete.
+ - _datetime_: return true if the date value is valid for format.
+ - _custom_: use custom validation, if it not exist, always returns true.
+- `getRawValue()`: get the converted value of mask.
+ - _credit-card_: return the array with the value parts. Ex: `1234 1234 1234 1234` returns `[1234, 1234, 1234, 1234]`.
+ - _cpf_: return the value without mask.
+ - _cnpj_: return the value without mask.
+ - _zip-code_: return the value without mask.
+ - _only-numbers_: return the value without mask.
+ - _money_: return the Number value. Ex: `R$ 1.234,56` returns `1234.56`.
+ - _cel-phone_: return the value without mask.
+ - _datetime_: return the `moment` object for the date and format.
+ - _custom_: use custom method (passed in options). If it not exists, returns the current value.
+
+Sample usage:
+
+```jsx
+import React, { Component } from 'react'
+import { StyleSheet, View } from 'react-native'
+import { TextInputMask } from 'react-native-masked-text'
+
+export default class App extends Component {
+ state = {
+ datetime: ''
+ }
+ render() {
+ return (
+
+ (this._myDatetimeField = ref)}
+ style={styles.input}
+ type={'datetime'}
+ options={{
+ format: 'DD-MM-YYYY HH:mm:ss'
+ }}
+ placeholder={'datetime DD-MM-YYYY HH:mm:ss'}
+ value={this.state.datetime}
+ onChangeText={datetime => {
+ this.setState({ datetime })
+
+ // Now just use =)
+ console.log(this._myDatetimeField.getElement())
+ console.log(this._myDatetimeField.isValid())
+ console.log(this._myDatetimeField.getRawValue())
+ }}
+ />
+
+ )
+ }
+}
+
+const styles = StyleSheet.create({
+ container: {
+ flex: 1,
+ justifyContent: 'center',
+ alignItems: 'center',
+ backgroundColor: '#F5FCFF'
+ },
+ input: {
+ height: 50,
+ width: '80%',
+ borderColor: 'steelblue',
+ borderWidth: 2
+ }
+})
+```
## Usage (TextMask)
@@ -329,26 +401,26 @@ import React, { Component } from 'react'
import { TextMask } from 'react-native-masked-text'
export default class MyComponent extends Component {
- constructor(props) {
- super(props)
- this.state = {
- text: '4567123409871234'
- }
- }
+ constructor(props) {
+ super(props)
+ this.state = {
+ text: '4567123409871234'
+ }
+ }
- render() {
- // the type is required but options is required only for some specific types.
- // the sample below will output 4567 **** **** 1234
- return (
-
- )
- }
+ render() {
+ // the type is required but options is required only for some specific types.
+ // the sample below will output 4567 **** **** 1234
+ return (
+
+ )
+ }
}
```
@@ -368,15 +440,19 @@ If you want, we expose the `MaskService`. You can use it:
**Methods**
-* static toMask(type, value, settings): mask a value.
- _ `type` (String, required): the type of the mask (`cpf`, `datetime`, etc...)
- _ `value` (String, required): the value to be masked \* `settings` (Object, optional): if the mask type accepts options, pass it in the settings parameter
-* static toRawValue(type, maskedValue, settings): get the raw value of a masked value.
- _ `type` (String, required): the type of the mask (`cpf`, `datetime`, etc...)
- _ `maskedValue` (String, required): the masked value to be converted in raw value \* `settings` (Object, optional): if the mask type accepts options, pass it in the settings parameter
-* static isValid(type, value, settings): validate if the mask and the value match.
- _ `type` (String, required): the type of the mask (`cpf`, `datetime`, etc...)
- _ `value` (String, required): the value to be masked \* `settings` (Object, optional): if the mask type accepts options, pass it in the settings parameter
+- static toMask(type, value, settings): mask a value.
+ - `type` (String, required): the type of the mask (`cpf`, `datetime`, etc...)
+ - `value` (String, required): the value to be masked
+ - `settings` (Object, optional): if the mask type accepts options, pass it in the settings parameter
+- static toRawValue(type, maskedValue, settings): get the raw value of a masked value.
+ - `type` (String, required): the type of the mask (`cpf`, `datetime`, etc...)
+ - `maskedValue` (String, required): the masked value to be converted in raw value
+ - `settings` (Object, optional): if the mask type accepts options, pass it in the settings parameter
+- static isValid(type, value, settings): validate if the mask and the value match.
+ - `type` (String, required): the type of the mask (`cpf`, `datetime`, etc...)
+ - `value` (String, required): the value to be masked
+ - `settings` (Object, optional): if the mask type accepts options, pass it in the settings parameter
+- static getMask(type, value, settings): get the mask used to mask the value
Ex:
@@ -384,9 +460,9 @@ Ex:
import { MaskService } from 'react-native-masked-text'
var money = MaskService.toMask('money', '123', {
- unit: 'US$',
- separator: '.',
- delimiter: ','
+ unit: 'US$',
+ separator: '.',
+ delimiter: ','
})
// money -> US$ 1.23
@@ -394,8 +470,15 @@ var money = MaskService.toMask('money', '123', {
## Throubleshooting
-* If the `es2015` error throw by babel, try run `react-native start --reset-cache`
-
+- If the `es2015` error throw by babel, try run `react-native start --reset-cache`
## Changelog
+
View changelog [HERE](CHANGELOG.md)
+
+## Thanks to
+
+-
+
+- Thanks to [vanilla-masker](https://github.com/BankFacil/vanilla-masker) =).
+- Thanks to [moment](http://momentjs.com/) =).
diff --git a/__tests__/maks/cel-phone.mask.test.js b/__tests__/maks/cel-phone.mask.test.js
deleted file mode 100644
index 93e95325..00000000
--- a/__tests__/maks/cel-phone.mask.test.js
+++ /dev/null
@@ -1,125 +0,0 @@
-import { CelPhoneMask } from '../../lib/masks';
-
-test('getType results cel-phone', () => {
- var expected = 'cel-phone';
- var received = CelPhoneMask.getType();
-
- expect(received).toBe(expected);
-});
-
-test('5188888888 results (51) 8888-8888', () => {
- var mask = new CelPhoneMask();
- var expected = '(51) 8888-8888';
- var received = mask.getValue('5188888888');
-
- expect(received).toBe(expected);
-});
-
-test('51888888888 results (51) 88888-8888', () => {
- var mask = new CelPhoneMask();
- var expected = '(51) 88888-8888';
- var received = mask.getValue('51888888888');
-
- expect(received).toBe(expected);
-});
-
-test('88888888 withDDD=false results 8888-8888', () => {
- var mask = new CelPhoneMask();
- var expected = '8888-8888';
- var received = mask.getValue('88888888', {
- withDDD: false
- });
-
- expect(received).toBe(expected);
-});
-
-test('888888888 withDDD=false results 88888-8888', () => {
- var mask = new CelPhoneMask();
- var expected = '88888-8888';
- var received = mask.getValue('888888888', {
- withDDD: false
- });
-
- expect(received).toBe(expected);
-});
-
-test('12377777777 dddMask=999 results 123 7777-7777', () => {
- var mask = new CelPhoneMask();
- var expected = '123 7777-7777';
- var received = mask.getValue('12377777777', {
- dddMask: '999 '
- });
-
- expect(received).toBe(expected);
-});
-
-test('123777777777 dddMask=999 results 123 77777-7777', () => {
- var mask = new CelPhoneMask();
- var expected = '123 77777-7777';
- var received = mask.getValue('123777777777', {
- dddMask: '999 '
- });
-
- expect(received).toBe(expected);
-});
-
-test('123123 is not valid', () => {
- var mask = new CelPhoneMask();
- var expected = false;
- var received = mask.validate('123123');
-
- expect(received).toBe(expected);
-});
-
-test('5188888888 is valid', () => {
- var mask = new CelPhoneMask();
- var isValid = mask.validate('5188888888');
-
- expect(isValid).toBe(true);
-});
-
-test('123777777777 dddMask=999 is valid', () => {
- var mask = new CelPhoneMask();
- var isValid = mask.validate('123777777777', {
- dddMask: '999 '
- });
-
- expect(isValid).toBe(true);
-});
-
-test('1237777777 dddMask=999 is not valid', () => {
- var mask = new CelPhoneMask();
- var isValid = mask.validate('1237777777', {
- dddMask: '999 '
- });
-
- expect(isValid).toBe(false);
-});
-
-test('5188888888 results (51) 8888-8888 and raw value 5188888888', () => {
- var mask = new CelPhoneMask();
- var expected = '(51) 8888-8888';
- var received = mask.getValue('5188888888');
-
- var expectedRawValue = '5188888888';
- var receivedRawValue = mask.getRawValue(received);
-
- expect(received).toBe(expected);
- expect(receivedRawValue).toBe(expectedRawValue);
-});
-
-test('123777777777 dddMask=999 results 123 77777-7777 and raw value 123777777777', () => {
- var mask = new CelPhoneMask();
- var expected = '123 77777-7777';
- var received = mask.getValue('123777777777', {
- dddMask: '999 '
- });
-
- var expectedRawValue = '123777777777';
- var receivedRawValue = mask.getRawValue(received, {
- dddMask: '999 '
- });
-
- expect(received).toBe(expected);
- expect(receivedRawValue).toBe(expectedRawValue);
-});
\ No newline at end of file
diff --git a/__tests__/maks/cnpj.mask.test.js b/__tests__/maks/cnpj.mask.test.js
deleted file mode 100644
index 7ec01eeb..00000000
--- a/__tests__/maks/cnpj.mask.test.js
+++ /dev/null
@@ -1,73 +0,0 @@
-import { CnpjMask } from '../../lib/masks'
-
-test('getType results cnpj', () => {
- var expected = 'cnpj'
- var received = CnpjMask.getType()
-
- expect(received).toBe(expected)
-})
-
-test('79885262000130 results 79.885.262/0001-30', () => {
- var mask = new CnpjMask()
- var expected = '79.885.262/0001-30'
- var received = mask.getValue('79885262000130')
-
- expect(received).toBe(expected)
-})
-
-test('798852 results 79.885.2', () => {
- var mask = new CnpjMask()
- var expected = '79.885.2'
- var received = mask.getValue('798852')
-
- expect(received).toBe(expected)
-})
-
-test('79885262000130 results 79.885.262/0001-30 and is valid', () => {
- var mask = new CnpjMask()
- var expected = '79.885.262/0001-30'
- var received = mask.getValue('79885262000130')
- var isValid = mask.validate(received)
-
- expect(received).toBe(expected)
- expect(isValid).toBe(true)
-})
-
-test('79885262000140 results 79.885.262/0001-40 and is not valid', () => {
- var mask = new CnpjMask()
- var expected = '79.885.262/0001-40'
- var received = mask.getValue('79885262000140')
- var isValid = mask.validate(received)
-
- expect(received).toBe(expected)
- expect(isValid).toBe(false)
-})
-
-test('7988526200013 results 79.885.262/0001-3 and is not valid', () => {
- var mask = new CnpjMask()
- var expected = '79.885.262/0001-3'
- var received = mask.getValue('7988526200013')
- var isValid = mask.validate(received)
-
- expect(received).toBe(expected)
- expect(isValid).toBe(false)
-})
-
-test('79885262000130 results 79.885.262/0001-30 and raw value 79885262000130', () => {
- var mask = new CnpjMask()
- var expected = '79.885.262/0001-30'
- var received = mask.getValue('79885262000130')
-
- var expectedRawValue = '79885262000130'
- var receivedRawValue = mask.getRawValue(received)
-
- expect(received).toBe(expected)
- expect(receivedRawValue).toBe(expectedRawValue)
-})
-
-test('empty cnpj is invalid', () => {
- var mask = new CnpjMask()
- var received = mask.validate('', {})
-
- expect(received).toBeFalsy()
-})
diff --git a/__tests__/maks/cpf.mask.test.js b/__tests__/maks/cpf.mask.test.js
deleted file mode 100644
index 834428e9..00000000
--- a/__tests__/maks/cpf.mask.test.js
+++ /dev/null
@@ -1,73 +0,0 @@
-import { CpfMask } from '../../lib/masks'
-
-test('getType results cpf', () => {
- var expected = 'cpf'
- var received = CpfMask.getType()
-
- expect(received).toBe(expected)
-})
-
-test('12312312356 results 123.123.123-56', () => {
- var mask = new CpfMask()
- var expected = '123.123.123-56'
- var received = mask.getValue('12312312356')
-
- expect(received).toBe(expected)
-})
-
-test('123123 results 123.123', () => {
- var mask = new CpfMask()
- var expected = '123.123'
- var received = mask.getValue('123123')
-
- expect(received).toBe(expected)
-})
-
-test('07833823678 results 078.338.236-78 and is valid', () => {
- var mask = new CpfMask()
- var expected = '078.338.236-78'
- var received = mask.getValue('07833823678')
- var isValid = mask.validate(received)
-
- expect(received).toBe(expected)
- expect(isValid).toBe(true)
-})
-
-test('11111111111 results 111.111.111-11 and is not valid', () => {
- var mask = new CpfMask()
- var expected = '111.111.111-11'
- var received = mask.getValue('11111111111')
- var isValid = mask.validate(received)
-
- expect(received).toBe(expected)
- expect(isValid).toBe(false)
-})
-
-test('1234567890 results 123.456.789-0 and is not valid', () => {
- var mask = new CpfMask()
- var expected = '123.456.789-0'
- var received = mask.getValue('1234567890')
- var isValid = mask.validate(received)
-
- expect(received).toBe(expected)
- expect(isValid).toBe(false)
-})
-
-test('12312312356 results 123.123.123-56 and raw value 12312312356', () => {
- var mask = new CpfMask()
- var expected = '123.123.123-56'
- var received = mask.getValue('12312312356')
-
- var expectedRawValue = '12312312356'
- var receivedRawValue = mask.getRawValue(received)
-
- expect(received).toBe(expected)
- expect(receivedRawValue).toBe(expectedRawValue)
-})
-
-test('empty cpf is invalid', () => {
- var mask = new CpfMask()
- var received = mask.validate('', {})
-
- expect(received).toBeFalsy()
-})
diff --git a/__tests__/maks/credit-card.mask.test.js b/__tests__/maks/credit-card.mask.test.js
deleted file mode 100644
index f93bd4a7..00000000
--- a/__tests__/maks/credit-card.mask.test.js
+++ /dev/null
@@ -1,74 +0,0 @@
-import { CreditCardMask } from '../../lib/masks';
-
-test('getType results credit-card', () => {
- var expected = 'credit-card';
- var received = CreditCardMask.getType();
-
- expect(received).toBe(expected);
-});
-
-test('1234123412341234 results 1234 1234 1234 1234', () => {
- var mask = new CreditCardMask();
- var expected = '1234 1234 1234 1234';
- var received = mask.getValue('1234123412341234');
-
- expect(received).toBe(expected);
-});
-
-test('1234123412341234 obfuscated true results 1234 **** **** 1234', () => {
- var mask = new CreditCardMask();
- var expected = '1234 **** **** 1234';
- var received = mask.getValue('1234123412341234', {
- obfuscated: true
- });
-
- expect(received).toBe(expected);
-});
-
-test('1234123412341234 obfuscated false results 1234 1234 1234 1234', () => {
- var mask = new CreditCardMask();
- var expected = '1234 1234 1234 1234';
- var received = mask.getValue('1234123412341234', {
- obfuscated: false
- });
-
- expect(received).toBe(expected);
-});
-
-test('1234123412341234 obfuscated false results 1234 1234 1234 1234 and raw value [1234, 1234, 1234, 1234]', () => {
- var mask = new CreditCardMask();
- var options = {
- obfuscated: false
- };
-
- var expected = '1234 1234 1234 1234';
- var received = mask.getValue('1234123412341234', options);
-
- var expectedRawValue = ['1234', '1234', '1234', '1234'];
- var receivedRawValue = mask.getRawValue(received, options);
-
- expect(received).toBe(expected);
-
- expectedRawValue.forEach((val, index) => {
- expect(val).toBe(receivedRawValue[index]);
- });
-});
-
-test('1234123412341234 obfuscated true results 1234 **** **** 1234 and raw value [1234, ****, ****, 1234]', () => {
- var mask = new CreditCardMask();
- var options = {
- obfuscated: true
- };
-
- var expected = '1234 **** **** 1234';
- var received = mask.getValue('1234123412341234', options);
-
- var expectedRawValue = ['1234', '****', '****', '1234'];
- var receivedRawValue = mask.getRawValue(received, options);
-
- expect(received).toBe(expected);
-
- expectedRawValue.forEach((val, index) => {
- expect(val).toBe(receivedRawValue[index]);
- });
-});
\ No newline at end of file
diff --git a/__tests__/maks/custom.mask.test.js b/__tests__/maks/custom.mask.test.js
deleted file mode 100644
index 1c9c7743..00000000
--- a/__tests__/maks/custom.mask.test.js
+++ /dev/null
@@ -1,188 +0,0 @@
-import { CustomMask } from '../../lib/masks';
-
-test('getType results custom', () => {
- var expected = 'custom';
- var received = CustomMask.getType();
-
- expect(received).toBe(expected);
-});
-
-test('123 with mask AAA9 results ', () => {
- var mask = new CustomMask();
- var expected = '';
- var received = mask.getValue('123', {
- mask: 'AAA9'
- });
-
- expect(received).toBe(expected);
-});
-
-test('TA3 with mask AAA9 results TA', () => {
- var mask = new CustomMask();
- var expected = 'TA';
- var received = mask.getValue('TA3', {
- mask: 'AAA9'
- });
-
- expect(received).toBe(expected);
-});
-
-test('TABC with mask AAA9 results TAB', () => {
- var mask = new CustomMask();
- var expected = 'TAB';
- var received = mask.getValue('TABC', {
- mask: 'AAA9'
- });
-
- expect(received).toBe(expected);
-});
-
-test('1111111 with mask 999-9999 results 111-1111', () => {
- var mask = new CustomMask();
- var expected = '111-1111';
- var received = mask.getValue('1111111', {
- mask: '999-9999'
- });
-
- expect(received).toBe(expected);
-});
-
-test('B45 with mask A#99 results B#45', () => {
- var mask = new CustomMask();
- var expected = 'B#45';
- var received = mask.getValue('B45', {
- mask: 'A#99'
- });
-
- expect(received).toBe(expected);
-});
-
-test('BC45 with mask AS#99 results BC#45', () => {
- var mask = new CustomMask();
- var expected = 'BC#45';
- var received = mask.getValue('BC45', {
- mask: 'AS#99'
- });
-
- expect(received).toBe(expected);
-});
-
-test('B345 with mask AS#99 results B3#45', () => {
- var mask = new CustomMask();
- var expected = 'B3#45';
- var received = mask.getValue('B345', {
- mask: 'AS#99'
- });
-
- expect(received).toBe(expected);
-});
-
-test('DWARF with mask AAAAA and custom validator results DWARF and is valid', () => {
- var mask = new CustomMask();
- var input = 'DWARF';
- var settings = {
- mask: 'AAAAA'
- };
- var validator = (value, settings) => {
- return value === 'DWARF';
- };
-
- var expected = 'DWARF';
- var received = mask.getValue(input, settings);
- var isValid = mask.validate(input, settings);
-
- expect(expected).toBe(received);
- expect(isValid).toBe(true);
-});
-
-test('ELF with mask AAAAA and custom validator results DWARF and is invalid', () => {
- var mask = new CustomMask();
- var input = 'ELF';
- var settings = {
- mask: 'AAAAA'
- };
- var validator = (value, settings) => {
- return value === 'DWARF';
- };
-
- var expected = 'ELF';
- var received = mask.getValue(input, settings);
- var isValid = mask.validate(input, settings);
-
- expect(expected).toBe(received);
- expect(isValid).toBe(true);
-});
-
-test('123 with mask 999 results 123 and raw value 123(type Number)', () => {
- var mask = new CustomMask();
- var options = {
- mask: '999',
- getRawValue: function (maskedValue, settings) {
- return Number(maskedValue);
- }
- };
-
- var expected = '123';
- var received = mask.getValue('123', options);
-
- var expectedRawValue = 123;
- var receivedRawValue = mask.getRawValue(received, options);
-
- expect(received).toBe(expected);
- expect(receivedRawValue).toBe(expectedRawValue);
-});
-
-test('mask with custom translation and match', () => {
- var mask = new CustomMask();
- var options = {
- mask: '999&AAA',
- translation: {
- '&': function (val) {
- return ['#', '.', ':'].indexOf(val) >= 0 ? val : null;
- }
- }
- }
-
- var expected = '123#ABC';
- var received = mask.getValue('123#ABC', options);
-
- expect(received).toBe(expected);
-});
-
-test('mask with custom translation and not match', () => {
- var mask = new CustomMask();
- var options = {
- mask: '999&AAA',
- translation: {
- '&': function (val) {
- return ['#', '.', ':'].indexOf(val) >= 0 ? val : null;
- }
- }
- }
-
- var expected = '123';
- var received = mask.getValue('123|ABC', options);
-
- expect(received).toBe(expected);
-});
-
-//
-// need to fix:
-//
-
-// test('mask with custom translation and optionals and matching', () => {
-// var mask = new CustomMask();
-// var options = {
-// mask: '999***AAA&',
-// translation: {
-// '&': function(val) {
-// return ['#', '.', ':'].indexOf(val) >= 0 ? val : null;
-// }
-// }
-// }
-
-// var expected = '123|% ABC.';
-// var received = mask.getValue('123|% ABC.', options);
-
-// expect(received).toBe(expected);
-// });
diff --git a/__tests__/maks/datetime.mask.test.js b/__tests__/maks/datetime.mask.test.js
deleted file mode 100644
index e285c0a0..00000000
--- a/__tests__/maks/datetime.mask.test.js
+++ /dev/null
@@ -1,103 +0,0 @@
-import { DatetimeMask } from '../../lib/masks';
-var moment = require('moment');
-
-function compareMomentObj(dateTimeA, dateTimeB) {
- var momentA = moment(dateTimeA, "DD/MM/YYYY");
- var momentB = moment(dateTimeB, "DD/MM/YYYY");
- if (momentA > momentB) return 1;
- else if (momentA < momentB) return -1;
- else return 0;
-}
-
-test('getType results datetime', () => {
- var expected = 'datetime';
- var received = DatetimeMask.getType();
-
- expect(received).toBe(expected);
-});
-
-test('01011990174030 with format DD/MM/YYYY HH:mm:ss results 01/01/1990 17:40:30', () => {
- var mask = new DatetimeMask();
- var expected = '01/01/1990 17:40:30';
- var received = mask.getValue('01011990174030');
-
- expect(received).toBe(expected);
-});
-
-test('01011990174030 with format DD-MM-YYYY HH:mm:ss results 01-01-1990 17:40:30', () => {
- var mask = new DatetimeMask();
- var expected = '01-01-1990 17:40:30';
- var received = mask.getValue('01011990174030', {
- format: 'DD-MM-YYYY HH:mm:ss'
- });
-
- expect(received).toBe(expected);
-});
-
-
-test('01011990 with format DD-MM-YYYY results 01-01-1990', () => {
- var mask = new DatetimeMask();
- var expected = '01-01-1990';
- var received = mask.getValue('01011990', {
- format: 'DD-MM-YYYY HH:mm:ss'
- });
-
- expect(received).toBe(expected);
-});
-
-test('191050 with format HH:mm:ss results 19:10:50 and is valid', () => {
- var mask = new DatetimeMask();
- var input = '191050';
- var settings = {
- format: 'HH:mm:ss'
- };
-
- var expected = '19:10:50';
- var received = mask.getValue(input, settings);
- var isValid = mask.validate(input, settings);
-
- expect(received).toBe(expected);
- expect(isValid).toBe(true);
-});
-
-test('99999999 with format DD/MM/YYYY results 99/99/9999 and is invalid', () => {
- var mask = new DatetimeMask();
- var input = '99999999';
- var settings = {
- format: 'DD/MM/YYYY'
- };
-
- var expected = '99/99/9999';
- var received = mask.getValue(input, settings);
- var isValid = mask.validate(input, settings);
-
- expect(received).toBe(expected);
- expect(isValid).toBe(false);
-});
-
-test('01011990174030 with format DD/MM/YYYY HH:mm:ss results 01/01/1990 17:40:30 and is valid', () => {
- var mask = new DatetimeMask();
- var input = '01011990174030';
- var settings = {
- format: 'DD/MM/YYYY HH:mm:ss'
- };
-
- var expected = '01/01/1990 17:40:30';
- var received = mask.getValue(input, settings);
- var isValid = mask.validate(input, settings);
-
- expect(received).toBe(expected);
- expect(isValid).toBe(true);
-});
-
-test('01011990174030 with format DD/MM/YYYY HH:mm:ss results 01/01/1990 17:40:30 and raw value Date', () => {
- var mask = new DatetimeMask();
- var expected = '01/01/1990 17:40:30';
- var received = mask.getValue('01011990174030');
-
- var expectedRawValue = moment(received, 'DD/MM/YYYY HH:mm:ss', true);
- var receivedRawValue = mask.getRawValue(received);
-
- expect(received).toBe(expected);
- expect(compareMomentObj(receivedRawValue, expectedRawValue)).toBe(0);
-});
\ No newline at end of file
diff --git a/__tests__/maks/zip-code.mask.test.js b/__tests__/maks/zip-code.mask.test.js
deleted file mode 100644
index c6b539ce..00000000
--- a/__tests__/maks/zip-code.mask.test.js
+++ /dev/null
@@ -1,54 +0,0 @@
-import { ZipCodeMask } from '../../lib/masks';
-
-test('getType results zip-code', () => {
- var expected = 'zip-code';
- var received = ZipCodeMask.getType();
-
- expect(received).toBe(expected);
-});
-
-test('11111111 results 11111-111', () => {
- var mask = new ZipCodeMask();
- var expected = '11111-111';
- var received = mask.getValue('11111111');
-
- expect(received).toBe(expected);
-});
-
-test('1111111 results 11111-11', () => {
- var mask = new ZipCodeMask();
- var expected = '11111-11';
- var received = mask.getValue('1111111');
-
- expect(received).toBe(expected);
-});
-
-test('1111111 results 11111-11 and is not valid', () => {
- var mask = new ZipCodeMask();
- var expected = '11111-11';
- var received = mask.getValue('1111111');
- var isValid = mask.validate(received);
-
- expect(isValid).toBe(false);
-});
-
-test('11111111 results 11111-111 and is not valid', () => {
- var mask = new ZipCodeMask();
- var expected = '11111-111';
- var received = mask.getValue('11111111');
- var isValid = mask.validate(received);
-
- expect(isValid).toBe(true);
-});
-
-test('11111111 results 11111-111 and raw value 11111111', () => {
- var mask = new ZipCodeMask();
- var expected = '11111-111';
- var received = mask.getValue('11111111');
-
- var expectedRawValue = '11111111';
- var receivedRawValue = mask.getRawValue(received);
-
- expect(received).toBe(expected);
- expect(receivedRawValue).toBe(expectedRawValue);
-});
\ No newline at end of file
diff --git a/__tests__/mask/cel-phone.mask.test.js b/__tests__/mask/cel-phone.mask.test.js
new file mode 100644
index 00000000..a931fba6
--- /dev/null
+++ b/__tests__/mask/cel-phone.mask.test.js
@@ -0,0 +1,157 @@
+import { CelPhoneMask } from '../../lib/masks'
+
+test('getType results cel-phone', () => {
+ var expected = 'cel-phone'
+ var received = CelPhoneMask.getType()
+
+ expect(received).toBe(expected)
+})
+
+test('5188888888 results (51) 8888-8888', () => {
+ var mask = new CelPhoneMask()
+ var expected = '(51) 8888-8888'
+ var received = mask.getValue('5188888888')
+
+ expect(received).toBe(expected)
+})
+
+test('51888888888 results (51) 88888-8888', () => {
+ var mask = new CelPhoneMask()
+ var expected = '(51) 88888-8888'
+ var received = mask.getValue('51888888888')
+
+ expect(received).toBe(expected)
+})
+
+test('88888888 withDDD=false results 8888-8888', () => {
+ var mask = new CelPhoneMask()
+ var expected = '8888-8888'
+ var received = mask.getValue('88888888', {
+ withDDD: false
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('888888888 withDDD=false results 88888-8888', () => {
+ var mask = new CelPhoneMask()
+ var expected = '88888-8888'
+ var received = mask.getValue('888888888', {
+ withDDD: false
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('12377777777 dddMask=999 results 123 7777-7777', () => {
+ var mask = new CelPhoneMask()
+ var expected = '123 7777-7777'
+ var received = mask.getValue('12377777777', {
+ dddMask: '999 '
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('123777777777 dddMask=999 results 123 77777-7777', () => {
+ var mask = new CelPhoneMask()
+ var expected = '123 77777-7777'
+ var received = mask.getValue('123777777777', {
+ dddMask: '999 '
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('123123 is not valid', () => {
+ var mask = new CelPhoneMask()
+ var expected = false
+ var received = mask.validate('123123')
+
+ expect(received).toBe(expected)
+})
+
+test('5188888888 is valid', () => {
+ var mask = new CelPhoneMask()
+ var isValid = mask.validate('5188888888')
+
+ expect(isValid).toBe(true)
+})
+
+test('123777777777 dddMask=999 is valid', () => {
+ var mask = new CelPhoneMask()
+ var isValid = mask.validate('123777777777', {
+ dddMask: '999 '
+ })
+
+ expect(isValid).toBe(true)
+})
+
+test('1237777777 dddMask=999 is not valid', () => {
+ var mask = new CelPhoneMask()
+ var isValid = mask.validate('1237777777', {
+ dddMask: '999 '
+ })
+
+ expect(isValid).toBe(false)
+})
+
+test('5188888888 results (51) 8888-8888 and raw value 5188888888', () => {
+ var mask = new CelPhoneMask()
+ var expected = '(51) 8888-8888'
+ var received = mask.getValue('5188888888')
+
+ var expectedRawValue = '5188888888'
+ var receivedRawValue = mask.getRawValue(received)
+
+ expect(received).toBe(expected)
+ expect(receivedRawValue).toBe(expectedRawValue)
+})
+
+test('123777777777 dddMask=999 results 123 77777-7777 and raw value 123777777777', () => {
+ var mask = new CelPhoneMask()
+ var expected = '123 77777-7777'
+ var received = mask.getValue('123777777777', {
+ dddMask: '999 '
+ })
+
+ var expectedRawValue = '123777777777'
+ var receivedRawValue = mask.getRawValue(received, {
+ dddMask: '999 '
+ })
+
+ expect(received).toBe(expected)
+ expect(receivedRawValue).toBe(expectedRawValue)
+})
+
+test('getMask for 99999999 returns (99) 9999-9999', () => {
+ var mask = new CelPhoneMask()
+ var expected = '(99) 9999-9999'
+ var received = mask.getMask('99999999')
+
+ expect(received).toBe(expected)
+})
+
+test('getMask for 9988887777 returns (99) 9999-9999', () => {
+ var mask = new CelPhoneMask()
+ var expected = '(99) 9999-9999'
+ var received = mask.getMask('9988887777')
+
+ expect(received).toBe(expected)
+})
+
+test('getMask for 99888877776 returns (99) 99999-9999', () => {
+ var mask = new CelPhoneMask()
+ var expected = '(99) 99999-9999'
+ var received = mask.getMask('99888877776')
+
+ expect(received).toBe(expected)
+})
+
+test('getMask for 999998888 withoud DDD returns 99999-9999', () => {
+ var mask = new CelPhoneMask()
+ var expected = '99999-9999'
+ var received = mask.getMask('999998888', { withDDD: false })
+
+ expect(received).toBe(expected)
+})
diff --git a/__tests__/mask/cnpj.mask.test.js b/__tests__/mask/cnpj.mask.test.js
new file mode 100644
index 00000000..e9131a04
--- /dev/null
+++ b/__tests__/mask/cnpj.mask.test.js
@@ -0,0 +1,81 @@
+import { CnpjMask } from '../../lib/masks'
+
+test('getType results cnpj', () => {
+ var expected = 'cnpj'
+ var received = CnpjMask.getType()
+
+ expect(received).toBe(expected)
+})
+
+test('79885262000130 results 79.885.262/0001-30', () => {
+ var mask = new CnpjMask()
+ var expected = '79.885.262/0001-30'
+ var received = mask.getValue('79885262000130')
+
+ expect(received).toBe(expected)
+})
+
+test('798852 results 79.885.2', () => {
+ var mask = new CnpjMask()
+ var expected = '79.885.2'
+ var received = mask.getValue('798852')
+
+ expect(received).toBe(expected)
+})
+
+test('79885262000130 results 79.885.262/0001-30 and is valid', () => {
+ var mask = new CnpjMask()
+ var expected = '79.885.262/0001-30'
+ var received = mask.getValue('79885262000130')
+ var isValid = mask.validate(received)
+
+ expect(received).toBe(expected)
+ expect(isValid).toBe(true)
+})
+
+test('79885262000140 results 79.885.262/0001-40 and is not valid', () => {
+ var mask = new CnpjMask()
+ var expected = '79.885.262/0001-40'
+ var received = mask.getValue('79885262000140')
+ var isValid = mask.validate(received)
+
+ expect(received).toBe(expected)
+ expect(isValid).toBe(false)
+})
+
+test('7988526200013 results 79.885.262/0001-3 and is not valid', () => {
+ var mask = new CnpjMask()
+ var expected = '79.885.262/0001-3'
+ var received = mask.getValue('7988526200013')
+ var isValid = mask.validate(received)
+
+ expect(received).toBe(expected)
+ expect(isValid).toBe(false)
+})
+
+test('79885262000130 results 79.885.262/0001-30 and raw value 79885262000130', () => {
+ var mask = new CnpjMask()
+ var expected = '79.885.262/0001-30'
+ var received = mask.getValue('79885262000130')
+
+ var expectedRawValue = '79885262000130'
+ var receivedRawValue = mask.getRawValue(received)
+
+ expect(received).toBe(expected)
+ expect(receivedRawValue).toBe(expectedRawValue)
+})
+
+test('empty cnpj is invalid', () => {
+ var mask = new CnpjMask()
+ var received = mask.validate('', {})
+
+ expect(received).toBeFalsy()
+})
+
+test('getMask returns 99.999.999/9999-99', () => {
+ var mask = new CnpjMask()
+ var expected = '99.999.999/9999-99'
+ var received = mask.getMask()
+
+ expect(expected).toBe(received)
+})
diff --git a/__tests__/mask/cpf-cnpj.mask.test.js b/__tests__/mask/cpf-cnpj.mask.test.js
new file mode 100644
index 00000000..85b735b7
--- /dev/null
+++ b/__tests__/mask/cpf-cnpj.mask.test.js
@@ -0,0 +1,40 @@
+import { CpfCnpjMask } from '../../lib/masks'
+
+test('getType results cpf-cnpj', () => {
+ var expected = 'cpf-cnpj'
+ var received = CpfCnpjMask.getType()
+
+ expect(received).toBe(expected)
+})
+
+test('01234567891 results in cpf format', () => {
+ var mask = new CpfCnpjMask()
+ var expected = '012.345.678-91'
+ var received = mask.getValue('01234567891')
+
+ expect(received).toBe(expected)
+})
+
+test('79885262000130 results in cnpj format', () => {
+ var mask = new CpfCnpjMask()
+ var expected = '79.885.262/0001-30'
+ var received = mask.getValue('79885262000130')
+
+ expect(received).toBe(expected)
+})
+
+test('getMask for 12345678901 returns 999.999.999-99', () => {
+ var mask = new CpfCnpjMask()
+ var expected = '999.999.999-99'
+ var received = mask.getMask('12345678901')
+
+ expect(received).toBe(expected)
+})
+
+test('getMask for 123456789010 returns 99.999.999/9999-99', () => {
+ var mask = new CpfCnpjMask()
+ var expected = '99.999.999/9999-99'
+ var received = mask.getMask('123456789010')
+
+ expect(received).toBe(expected)
+})
diff --git a/__tests__/mask/cpf.mask.test.js b/__tests__/mask/cpf.mask.test.js
new file mode 100644
index 00000000..d3046192
--- /dev/null
+++ b/__tests__/mask/cpf.mask.test.js
@@ -0,0 +1,81 @@
+import { CpfMask } from '../../lib/masks'
+
+test('getType results cpf', () => {
+ var expected = 'cpf'
+ var received = CpfMask.getType()
+
+ expect(received).toBe(expected)
+})
+
+test('12312312356 results 123.123.123-56', () => {
+ var mask = new CpfMask()
+ var expected = '123.123.123-56'
+ var received = mask.getValue('12312312356')
+
+ expect(received).toBe(expected)
+})
+
+test('123123 results 123.123', () => {
+ var mask = new CpfMask()
+ var expected = '123.123'
+ var received = mask.getValue('123123')
+
+ expect(received).toBe(expected)
+})
+
+test('07833823678 results 078.338.236-78 and is valid', () => {
+ var mask = new CpfMask()
+ var expected = '078.338.236-78'
+ var received = mask.getValue('07833823678')
+ var isValid = mask.validate(received)
+
+ expect(received).toBe(expected)
+ expect(isValid).toBe(true)
+})
+
+test('11111111111 results 111.111.111-11 and is not valid', () => {
+ var mask = new CpfMask()
+ var expected = '111.111.111-11'
+ var received = mask.getValue('11111111111')
+ var isValid = mask.validate(received)
+
+ expect(received).toBe(expected)
+ expect(isValid).toBe(false)
+})
+
+test('1234567890 results 123.456.789-0 and is not valid', () => {
+ var mask = new CpfMask()
+ var expected = '123.456.789-0'
+ var received = mask.getValue('1234567890')
+ var isValid = mask.validate(received)
+
+ expect(received).toBe(expected)
+ expect(isValid).toBe(false)
+})
+
+test('12312312356 results 123.123.123-56 and raw value 12312312356', () => {
+ var mask = new CpfMask()
+ var expected = '123.123.123-56'
+ var received = mask.getValue('12312312356')
+
+ var expectedRawValue = '12312312356'
+ var receivedRawValue = mask.getRawValue(received)
+
+ expect(received).toBe(expected)
+ expect(receivedRawValue).toBe(expectedRawValue)
+})
+
+test('empty cpf is invalid', () => {
+ var mask = new CpfMask()
+ var received = mask.validate('', {})
+
+ expect(received).toBeFalsy()
+})
+
+test('getMask returns 999.999.999-99', () => {
+ var mask = new CpfMask()
+ var expected = '999.999.999-99'
+ var received = mask.getMask()
+
+ expect(received).toBe(expected)
+})
diff --git a/__tests__/mask/credit-card.mask.test.js b/__tests__/mask/credit-card.mask.test.js
new file mode 100644
index 00000000..86e3c57b
--- /dev/null
+++ b/__tests__/mask/credit-card.mask.test.js
@@ -0,0 +1,90 @@
+import { CreditCardMask } from '../../lib/masks'
+
+test('getType results credit-card', () => {
+ var expected = 'credit-card'
+ var received = CreditCardMask.getType()
+
+ expect(received).toBe(expected)
+})
+
+test('1234123412341234 results 1234 1234 1234 1234', () => {
+ var mask = new CreditCardMask()
+ var expected = '1234 1234 1234 1234'
+ var received = mask.getValue('1234123412341234')
+
+ expect(received).toBe(expected)
+})
+
+test('1234123412341234 obfuscated true results 1234 **** **** 1234', () => {
+ var mask = new CreditCardMask()
+ var expected = '1234 **** **** 1234'
+ var received = mask.getValue('1234123412341234', {
+ obfuscated: true
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('1234123412341234 obfuscated false results 1234 1234 1234 1234', () => {
+ var mask = new CreditCardMask()
+ var expected = '1234 1234 1234 1234'
+ var received = mask.getValue('1234123412341234', {
+ obfuscated: false
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('1234123412341234 obfuscated false results 1234 1234 1234 1234 and raw value [1234, 1234, 1234, 1234]', () => {
+ var mask = new CreditCardMask()
+ var options = {
+ obfuscated: false
+ }
+
+ var expected = '1234 1234 1234 1234'
+ var received = mask.getValue('1234123412341234', options)
+
+ var expectedRawValue = ['1234', '1234', '1234', '1234']
+ var receivedRawValue = mask.getRawValue(received, options)
+
+ expect(received).toBe(expected)
+
+ expectedRawValue.forEach((val, index) => {
+ expect(val).toBe(receivedRawValue[index])
+ })
+})
+
+test('1234123412341234 obfuscated true results 1234 **** **** 1234 and raw value [1234, ****, ****, 1234]', () => {
+ var mask = new CreditCardMask()
+ var options = {
+ obfuscated: true
+ }
+
+ var expected = '1234 **** **** 1234'
+ var received = mask.getValue('1234123412341234', options)
+
+ var expectedRawValue = ['1234', '****', '****', '1234']
+ var receivedRawValue = mask.getRawValue(received, options)
+
+ expect(received).toBe(expected)
+
+ expectedRawValue.forEach((val, index) => {
+ expect(val).toBe(receivedRawValue[index])
+ })
+})
+
+test('getMask returns 9999 9999 9999 9999', () => {
+ var mask = new CreditCardMask()
+ var expected = '9999 9999 9999 9999'
+ var received = mask.getMask()
+
+ expect(received).toBe(expected)
+})
+
+test('getMask obfuscated returns 9999 **** **** 9999', () => {
+ var mask = new CreditCardMask()
+ var expected = '9999 **** **** 9999'
+ var received = mask.getMask('', { obfuscated: true })
+
+ expect(received).toBe(expected)
+})
diff --git a/__tests__/mask/custom.mask.test.js b/__tests__/mask/custom.mask.test.js
new file mode 100644
index 00000000..8eac0183
--- /dev/null
+++ b/__tests__/mask/custom.mask.test.js
@@ -0,0 +1,184 @@
+import { CustomMask } from '../../lib/masks'
+
+test('getType results custom', () => {
+ var expected = 'custom'
+ var received = CustomMask.getType()
+
+ expect(received).toBe(expected)
+})
+
+test('123 with mask AAA9 results ', () => {
+ var mask = new CustomMask()
+ var expected = ''
+ var received = mask.getValue('123', {
+ mask: 'AAA9'
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('TA3 with mask AAA9 results TA', () => {
+ var mask = new CustomMask()
+ var expected = 'TA'
+ var received = mask.getValue('TA3', {
+ mask: 'AAA9'
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('TABC with mask AAA9 results TAB', () => {
+ var mask = new CustomMask()
+ var expected = 'TAB'
+ var received = mask.getValue('TABC', {
+ mask: 'AAA9'
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('1111111 with mask 999-9999 results 111-1111', () => {
+ var mask = new CustomMask()
+ var expected = '111-1111'
+ var received = mask.getValue('1111111', {
+ mask: '999-9999'
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('B45 with mask A#99 results B#45', () => {
+ var mask = new CustomMask()
+ var expected = 'B#45'
+ var received = mask.getValue('B45', {
+ mask: 'A#99'
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('BC45 with mask AS#99 results BC#45', () => {
+ var mask = new CustomMask()
+ var expected = 'BC#45'
+ var received = mask.getValue('BC45', {
+ mask: 'AS#99'
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('B345 with mask AS#99 results B3#45', () => {
+ var mask = new CustomMask()
+ var expected = 'B3#45'
+ var received = mask.getValue('B345', {
+ mask: 'AS#99'
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('DWARF with mask AAAAA and custom validator results DWARF and is valid', () => {
+ var mask = new CustomMask()
+ var input = 'DWARF'
+ var settings = {
+ mask: 'AAAAA'
+ }
+ var validator = (value, settings) => {
+ return value === 'DWARF'
+ }
+
+ var expected = 'DWARF'
+ var received = mask.getValue(input, settings)
+ var isValid = mask.validate(input, settings)
+
+ expect(expected).toBe(received)
+ expect(isValid).toBe(true)
+})
+
+test('ELF with mask AAAAA and custom validator results DWARF and is invalid', () => {
+ var mask = new CustomMask()
+ var input = 'ELF'
+ var settings = {
+ mask: 'AAAAA'
+ }
+ var validator = (value, settings) => {
+ return value === 'DWARF'
+ }
+
+ var expected = 'ELF'
+ var received = mask.getValue(input, settings)
+ var isValid = mask.validate(input, settings)
+
+ expect(expected).toBe(received)
+ expect(isValid).toBe(true)
+})
+
+test('123 with mask 999 results 123 and raw value 123(type Number)', () => {
+ var mask = new CustomMask()
+ var options = {
+ mask: '999',
+ getRawValue: function(maskedValue, settings) {
+ return Number(maskedValue)
+ }
+ }
+
+ var expected = '123'
+ var received = mask.getValue('123', options)
+
+ var expectedRawValue = 123
+ var receivedRawValue = mask.getRawValue(received, options)
+
+ expect(received).toBe(expected)
+ expect(receivedRawValue).toBe(expectedRawValue)
+})
+
+test('mask with custom translation and match', () => {
+ var mask = new CustomMask()
+ var options = {
+ mask: '999&AAA',
+ translation: {
+ '&': function(val) {
+ return ['#', '.', ':'].indexOf(val) >= 0 ? val : null
+ }
+ }
+ }
+
+ var expected = '123#ABC'
+ var received = mask.getValue('123#ABC', options)
+
+ expect(received).toBe(expected)
+})
+
+test('mask with custom translation and not match', () => {
+ var mask = new CustomMask()
+ var options = {
+ mask: '999&AAA',
+ translation: {
+ '&': function(val) {
+ return ['#', '.', ':'].indexOf(val) >= 0 ? val : ''
+ }
+ }
+ }
+
+ var expected = '123ABC'
+ var received = mask.getValue('123|ABC', options)
+
+ expect(received).toBe(expected)
+})
+
+test('mask with custom translation and optionals and matching', () => {
+ var mask = new CustomMask()
+ var options = {
+ mask: '999***AAA&',
+ translation: {
+ '&': function(val) {
+ return ['#', '.', ':'].indexOf(val) >= 0 ? val : null
+ }
+ }
+ }
+
+ var expected = '123|% ABC.'
+ var received = mask.getValue('123|% ABC.', options)
+
+ expect(received).toBe(expected)
+})
diff --git a/__tests__/mask/datetime.mask.test.js b/__tests__/mask/datetime.mask.test.js
new file mode 100644
index 00000000..c064ec0c
--- /dev/null
+++ b/__tests__/mask/datetime.mask.test.js
@@ -0,0 +1,110 @@
+import { DatetimeMask } from '../../lib/masks'
+var moment = require('moment')
+
+function compareMomentObj(dateTimeA, dateTimeB) {
+ var momentA = moment(dateTimeA, 'DD/MM/YYYY')
+ var momentB = moment(dateTimeB, 'DD/MM/YYYY')
+ if (momentA > momentB) return 1
+ else if (momentA < momentB) return -1
+ else return 0
+}
+
+test('getType results datetime', () => {
+ var expected = 'datetime'
+ var received = DatetimeMask.getType()
+
+ expect(received).toBe(expected)
+})
+
+test('01011990174030 with format DD/MM/YYYY HH:mm:ss results 01/01/1990 17:40:30', () => {
+ var mask = new DatetimeMask()
+ var expected = '01/01/1990 17:40:30'
+ var received = mask.getValue('01011990174030')
+
+ expect(received).toBe(expected)
+})
+
+test('01011990174030 with format DD-MM-YYYY HH:mm:ss results 01-01-1990 17:40:30', () => {
+ var mask = new DatetimeMask()
+ var expected = '01-01-1990 17:40:30'
+ var received = mask.getValue('01011990174030', {
+ format: 'DD-MM-YYYY HH:mm:ss'
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('01011990 with format DD-MM-YYYY results 01-01-1990', () => {
+ var mask = new DatetimeMask()
+ var expected = '01-01-1990'
+ var received = mask.getValue('01011990', {
+ format: 'DD-MM-YYYY HH:mm:ss'
+ })
+
+ expect(received).toBe(expected)
+})
+
+test('191050 with format HH:mm:ss results 19:10:50 and is valid', () => {
+ var mask = new DatetimeMask()
+ var input = '191050'
+ var settings = {
+ format: 'HH:mm:ss'
+ }
+
+ var expected = '19:10:50'
+ var received = mask.getValue(input, settings)
+ var isValid = mask.validate(input, settings)
+
+ expect(received).toBe(expected)
+ expect(isValid).toBe(true)
+})
+
+test('99999999 with format DD/MM/YYYY results 99/99/9999 and is invalid', () => {
+ var mask = new DatetimeMask()
+ var input = '99999999'
+ var settings = {
+ format: 'DD/MM/YYYY'
+ }
+
+ var expected = '99/99/9999'
+ var received = mask.getValue(input, settings)
+ var isValid = mask.validate(input, settings)
+
+ expect(received).toBe(expected)
+ expect(isValid).toBe(false)
+})
+
+test('01011990174030 with format DD/MM/YYYY HH:mm:ss results 01/01/1990 17:40:30 and is valid', () => {
+ var mask = new DatetimeMask()
+ var input = '01011990174030'
+ var settings = {
+ format: 'DD/MM/YYYY HH:mm:ss'
+ }
+
+ var expected = '01/01/1990 17:40:30'
+ var received = mask.getValue(input, settings)
+ var isValid = mask.validate(input, settings)
+
+ expect(received).toBe(expected)
+ expect(isValid).toBe(true)
+})
+
+test('01011990174030 with format DD/MM/YYYY HH:mm:ss results 01/01/1990 17:40:30 and raw value Date', () => {
+ var mask = new DatetimeMask()
+ var expected = '01/01/1990 17:40:30'
+ var received = mask.getValue('01011990174030')
+
+ var expectedRawValue = moment(received, 'DD/MM/YYYY HH:mm:ss', true)
+ var receivedRawValue = mask.getRawValue(received)
+
+ expect(received).toBe(expected)
+ expect(compareMomentObj(receivedRawValue, expectedRawValue)).toBe(0)
+})
+
+test('getMask for DD/MM/YYYY returns 99/99/9999', () => {
+ var mask = new DatetimeMask()
+ var expected = '99/99/9999'
+ var received = mask.getMask('', { format: 'DD/MM/YYYY' })
+
+ expect(received).toBe(expected)
+})
diff --git a/__tests__/maks/money.mask.test.js b/__tests__/mask/money.mask.test.js
similarity index 100%
rename from __tests__/maks/money.mask.test.js
rename to __tests__/mask/money.mask.test.js
diff --git a/__tests__/maks/only-numbers.mask.test.js b/__tests__/mask/only-numbers.mask.test.js
similarity index 100%
rename from __tests__/maks/only-numbers.mask.test.js
rename to __tests__/mask/only-numbers.mask.test.js
diff --git a/__tests__/mask/zip-code.mask.test.js b/__tests__/mask/zip-code.mask.test.js
new file mode 100644
index 00000000..29e655b7
--- /dev/null
+++ b/__tests__/mask/zip-code.mask.test.js
@@ -0,0 +1,63 @@
+import { ZipCodeMask } from '../../lib/masks'
+
+test('getType results zip-code', () => {
+ var expected = 'zip-code'
+ var received = ZipCodeMask.getType()
+
+ expect(received).toBe(expected)
+})
+
+test('11111111 results 11111-111', () => {
+ var mask = new ZipCodeMask()
+ var expected = '11111-111'
+ var received = mask.getValue('11111111')
+
+ expect(received).toBe(expected)
+})
+
+test('1111111 results 11111-11', () => {
+ var mask = new ZipCodeMask()
+ var expected = '11111-11'
+ var received = mask.getValue('1111111')
+
+ expect(received).toBe(expected)
+})
+
+test('1111111 results 11111-11 and is not valid', () => {
+ var mask = new ZipCodeMask()
+ var expected = '11111-11'
+ var received = mask.getValue('1111111')
+ var isValid = mask.validate(received)
+
+ expect(isValid).toBe(false)
+})
+
+test('11111111 results 11111-111 and is not valid', () => {
+ var mask = new ZipCodeMask()
+ var expected = '11111-111'
+ var received = mask.getValue('11111111')
+ var isValid = mask.validate(received)
+
+ expect(isValid).toBe(true)
+})
+
+test('11111111 results 11111-111 and raw value 11111111', () => {
+ var mask = new ZipCodeMask()
+ var expected = '11111-111'
+ var received = mask.getValue('11111111')
+
+ var expectedRawValue = '11111111'
+ var receivedRawValue = mask.getRawValue(received)
+
+ expect(received).toBe(expected)
+ expect(receivedRawValue).toBe(expectedRawValue)
+})
+
+test('getMask returns 99999-999', () => {
+ var mask = new ZipCodeMask()
+
+ var expected = '99999-999'
+ var received = mask.getMask()
+
+ expect(received).toBe(expected)
+})
diff --git a/android/.gradle/2.14.1/taskArtifacts/cache.properties b/android/.gradle/2.14.1/taskArtifacts/cache.properties
new file mode 100644
index 00000000..537f1cdd
--- /dev/null
+++ b/android/.gradle/2.14.1/taskArtifacts/cache.properties
@@ -0,0 +1 @@
+#Sat Sep 08 05:34:52 BRT 2018
diff --git a/android/.gradle/2.14.1/taskArtifacts/cache.properties.lock b/android/.gradle/2.14.1/taskArtifacts/cache.properties.lock
new file mode 100644
index 00000000..c05c09dd
Binary files /dev/null and b/android/.gradle/2.14.1/taskArtifacts/cache.properties.lock differ
diff --git a/android/.gradle/2.14.1/taskArtifacts/fileHashes.bin b/android/.gradle/2.14.1/taskArtifacts/fileHashes.bin
new file mode 100644
index 00000000..b9855b6f
Binary files /dev/null and b/android/.gradle/2.14.1/taskArtifacts/fileHashes.bin differ
diff --git a/android/.gradle/2.14.1/taskArtifacts/fileSnapshots.bin b/android/.gradle/2.14.1/taskArtifacts/fileSnapshots.bin
new file mode 100644
index 00000000..5c8cdf51
Binary files /dev/null and b/android/.gradle/2.14.1/taskArtifacts/fileSnapshots.bin differ
diff --git a/android/.gradle/2.14.1/taskArtifacts/fileSnapshotsToTreeSnapshotsIndex.bin b/android/.gradle/2.14.1/taskArtifacts/fileSnapshotsToTreeSnapshotsIndex.bin
new file mode 100644
index 00000000..eac86863
Binary files /dev/null and b/android/.gradle/2.14.1/taskArtifacts/fileSnapshotsToTreeSnapshotsIndex.bin differ
diff --git a/android/.gradle/2.14.1/taskArtifacts/taskArtifacts.bin b/android/.gradle/2.14.1/taskArtifacts/taskArtifacts.bin
new file mode 100644
index 00000000..2b168972
Binary files /dev/null and b/android/.gradle/2.14.1/taskArtifacts/taskArtifacts.bin differ
diff --git a/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin b/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin
new file mode 100644
index 00000000..56f420e9
Binary files /dev/null and b/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin differ
diff --git a/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock b/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock
new file mode 100644
index 00000000..68176fe2
Binary files /dev/null and b/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock differ
diff --git a/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin b/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin
new file mode 100644
index 00000000..ce2c04d9
Binary files /dev/null and b/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin differ
diff --git a/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock b/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock
new file mode 100644
index 00000000..16ce1d6c
Binary files /dev/null and b/android/.gradle/2.14.1/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock differ
diff --git a/android/RnTest.iml b/android/RnTest.iml
new file mode 100644
index 00000000..58946a44
--- /dev/null
+++ b/android/RnTest.iml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/BUCK b/android/app/BUCK
new file mode 100644
index 00000000..e8f4dfad
--- /dev/null
+++ b/android/app/BUCK
@@ -0,0 +1,65 @@
+# 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
+#
+
+lib_deps = []
+
+for jarfile in glob(['libs/*.jar']):
+ name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')]
+ lib_deps.append(':' + name)
+ prebuilt_jar(
+ name = name,
+ binary_jar = jarfile,
+ )
+
+for aarfile in glob(['libs/*.aar']):
+ name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')]
+ lib_deps.append(':' + name)
+ android_prebuilt_aar(
+ name = name,
+ aar = aarfile,
+ )
+
+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.rntest",
+)
+
+android_resource(
+ name = "res",
+ package = "com.rntest",
+ res = "src/main/res",
+)
+
+android_binary(
+ name = "app",
+ keystore = "//android/keystores:debug",
+ manifest = "src/main/AndroidManifest.xml",
+ package_type = "debug",
+ deps = [
+ ":app-code",
+ ],
+)
diff --git a/android/app/app.iml b/android/app/app.iml
new file mode 100644
index 00000000..406d7789
--- /dev/null
+++ b/android/app/app.iml
@@ -0,0 +1,122 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ generateDebugSources
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build.gradle b/android/app/build.gradle
new file mode 100644
index 00000000..880f4f03
--- /dev/null
+++ b/android/app/build.gradle
@@ -0,0 +1,150 @@
+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
+ * entryFile: "index.android.js",
+ *
+ * // 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 = [
+ entryFile: "index.js"
+]
+
+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
+
+android {
+ compileSdkVersion 23
+ buildToolsVersion "23.0.1"
+
+ defaultConfig {
+ applicationId "com.rntest"
+ minSdkVersion 16
+ targetSdkVersion 22
+ versionCode 1
+ versionName "1.0"
+ ndk {
+ abiFilters "armeabi-v7a", "x86"
+ }
+ }
+ splits {
+ abi {
+ reset()
+ enable enableSeparateBuildPerCPUArchitecture
+ universalApk false // If true, also generate a universal APK
+ include "armeabi-v7a", "x86"
+ }
+ }
+ buildTypes {
+ release {
+ minifyEnabled enableProguardInReleaseBuilds
+ proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
+ }
+ }
+ // 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:
+ // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
+ def versionCodes = ["armeabi-v7a":1, "x86":2]
+ 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 {
+ compile fileTree(dir: "libs", include: ["*.jar"])
+ compile "com.android.support:appcompat-v7:23.0.1"
+ compile "com.facebook.react:react-native:+" // From node_modules
+}
+
+// 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'
+}
diff --git a/android/app/build/generated/source/buildConfig/debug/com/rntest/BuildConfig.java b/android/app/build/generated/source/buildConfig/debug/com/rntest/BuildConfig.java
new file mode 100644
index 00000000..ede42448
--- /dev/null
+++ b/android/app/build/generated/source/buildConfig/debug/com/rntest/BuildConfig.java
@@ -0,0 +1,13 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package com.rntest;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String APPLICATION_ID = "com.rntest";
+ public static final String BUILD_TYPE = "debug";
+ public static final String FLAVOR = "";
+ public static final int VERSION_CODE = 1;
+ public static final String VERSION_NAME = "1.0";
+}
diff --git a/android/app/build/generated/source/r/debug/android/support/v7/appcompat/R.java b/android/app/build/generated/source/r/debug/android/support/v7/appcompat/R.java
new file mode 100644
index 00000000..c936e0c3
--- /dev/null
+++ b/android/app/build/generated/source/r/debug/android/support/v7/appcompat/R.java
@@ -0,0 +1,1222 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package android.support.v7.appcompat;
+
+public final class R {
+ public static final class anim {
+ public static final int abc_fade_in = 0x7f050000;
+ public static final int abc_fade_out = 0x7f050001;
+ public static final int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static final int abc_popup_enter = 0x7f050003;
+ public static final int abc_popup_exit = 0x7f050004;
+ public static final int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static final int abc_slide_in_bottom = 0x7f050006;
+ public static final int abc_slide_in_top = 0x7f050007;
+ public static final int abc_slide_out_bottom = 0x7f050008;
+ public static final int abc_slide_out_top = 0x7f050009;
+ }
+ public static final class attr {
+ public static final int actionBarDivider = 0x7f01007d;
+ public static final int actionBarItemBackground = 0x7f01007e;
+ public static final int actionBarPopupTheme = 0x7f010077;
+ public static final int actionBarSize = 0x7f01007c;
+ public static final int actionBarSplitStyle = 0x7f010079;
+ public static final int actionBarStyle = 0x7f010078;
+ public static final int actionBarTabBarStyle = 0x7f010073;
+ public static final int actionBarTabStyle = 0x7f010072;
+ public static final int actionBarTabTextStyle = 0x7f010074;
+ public static final int actionBarTheme = 0x7f01007a;
+ public static final int actionBarWidgetTheme = 0x7f01007b;
+ public static final int actionButtonStyle = 0x7f010097;
+ public static final int actionDropDownStyle = 0x7f010093;
+ public static final int actionLayout = 0x7f01004c;
+ public static final int actionMenuTextAppearance = 0x7f01007f;
+ public static final int actionMenuTextColor = 0x7f010080;
+ public static final int actionModeBackground = 0x7f010083;
+ public static final int actionModeCloseButtonStyle = 0x7f010082;
+ public static final int actionModeCloseDrawable = 0x7f010085;
+ public static final int actionModeCopyDrawable = 0x7f010087;
+ public static final int actionModeCutDrawable = 0x7f010086;
+ public static final int actionModeFindDrawable = 0x7f01008b;
+ public static final int actionModePasteDrawable = 0x7f010088;
+ public static final int actionModePopupWindowStyle = 0x7f01008d;
+ public static final int actionModeSelectAllDrawable = 0x7f010089;
+ public static final int actionModeShareDrawable = 0x7f01008a;
+ public static final int actionModeSplitBackground = 0x7f010084;
+ public static final int actionModeStyle = 0x7f010081;
+ public static final int actionModeWebSearchDrawable = 0x7f01008c;
+ public static final int actionOverflowButtonStyle = 0x7f010075;
+ public static final int actionOverflowMenuStyle = 0x7f010076;
+ public static final int actionProviderClass = 0x7f01004e;
+ public static final int actionViewClass = 0x7f01004d;
+ public static final int activityChooserViewStyle = 0x7f01009f;
+ public static final int alertDialogButtonGroupStyle = 0x7f0100c1;
+ public static final int alertDialogCenterButtons = 0x7f0100c2;
+ public static final int alertDialogStyle = 0x7f0100c0;
+ public static final int alertDialogTheme = 0x7f0100c3;
+ public static final int arrowHeadLength = 0x7f01002b;
+ public static final int arrowShaftLength = 0x7f01002c;
+ public static final int autoCompleteTextViewStyle = 0x7f0100c8;
+ public static final int background = 0x7f01000c;
+ public static final int backgroundSplit = 0x7f01000e;
+ public static final int backgroundStacked = 0x7f01000d;
+ public static final int backgroundTint = 0x7f0100e4;
+ public static final int backgroundTintMode = 0x7f0100e5;
+ public static final int barLength = 0x7f01002d;
+ public static final int borderlessButtonStyle = 0x7f01009c;
+ public static final int buttonBarButtonStyle = 0x7f010099;
+ public static final int buttonBarNegativeButtonStyle = 0x7f0100c6;
+ public static final int buttonBarNeutralButtonStyle = 0x7f0100c7;
+ public static final int buttonBarPositiveButtonStyle = 0x7f0100c5;
+ public static final int buttonBarStyle = 0x7f010098;
+ public static final int buttonPanelSideLayout = 0x7f01001f;
+ public static final int buttonStyle = 0x7f0100c9;
+ public static final int buttonStyleSmall = 0x7f0100ca;
+ public static final int buttonTint = 0x7f010025;
+ public static final int buttonTintMode = 0x7f010026;
+ public static final int checkboxStyle = 0x7f0100cb;
+ public static final int checkedTextViewStyle = 0x7f0100cc;
+ public static final int closeIcon = 0x7f010056;
+ public static final int closeItemLayout = 0x7f01001c;
+ public static final int collapseContentDescription = 0x7f0100db;
+ public static final int collapseIcon = 0x7f0100da;
+ public static final int color = 0x7f010027;
+ public static final int colorAccent = 0x7f0100b9;
+ public static final int colorButtonNormal = 0x7f0100bd;
+ public static final int colorControlActivated = 0x7f0100bb;
+ public static final int colorControlHighlight = 0x7f0100bc;
+ public static final int colorControlNormal = 0x7f0100ba;
+ public static final int colorPrimary = 0x7f0100b7;
+ public static final int colorPrimaryDark = 0x7f0100b8;
+ public static final int colorSwitchThumbNormal = 0x7f0100be;
+ public static final int commitIcon = 0x7f01005b;
+ public static final int contentInsetEnd = 0x7f010017;
+ public static final int contentInsetLeft = 0x7f010018;
+ public static final int contentInsetRight = 0x7f010019;
+ public static final int contentInsetStart = 0x7f010016;
+ public static final int controlBackground = 0x7f0100bf;
+ public static final int customNavigationLayout = 0x7f01000f;
+ public static final int defaultQueryHint = 0x7f010055;
+ public static final int dialogPreferredPadding = 0x7f010091;
+ public static final int dialogTheme = 0x7f010090;
+ public static final int displayOptions = 0x7f010005;
+ public static final int divider = 0x7f01000b;
+ public static final int dividerHorizontal = 0x7f01009e;
+ public static final int dividerPadding = 0x7f01004a;
+ public static final int dividerVertical = 0x7f01009d;
+ public static final int drawableSize = 0x7f010029;
+ public static final int drawerArrowStyle = 0x7f010000;
+ public static final int dropDownListViewStyle = 0x7f0100af;
+ public static final int dropdownListPreferredItemHeight = 0x7f010094;
+ public static final int editTextBackground = 0x7f0100a5;
+ public static final int editTextColor = 0x7f0100a4;
+ public static final int editTextStyle = 0x7f0100cd;
+ public static final int elevation = 0x7f01001a;
+ public static final int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static final int gapBetweenBars = 0x7f01002a;
+ public static final int goIcon = 0x7f010057;
+ public static final int height = 0x7f010001;
+ public static final int hideOnContentScroll = 0x7f010015;
+ public static final int homeAsUpIndicator = 0x7f010096;
+ public static final int homeLayout = 0x7f010010;
+ public static final int icon = 0x7f010009;
+ public static final int iconifiedByDefault = 0x7f010053;
+ public static final int indeterminateProgressStyle = 0x7f010012;
+ public static final int initialActivityCount = 0x7f01001d;
+ public static final int isLightTheme = 0x7f010002;
+ public static final int itemPadding = 0x7f010014;
+ public static final int layout = 0x7f010052;
+ public static final int listChoiceBackgroundIndicator = 0x7f0100b6;
+ public static final int listDividerAlertDialog = 0x7f010092;
+ public static final int listItemLayout = 0x7f010023;
+ public static final int listLayout = 0x7f010020;
+ public static final int listPopupWindowStyle = 0x7f0100b0;
+ public static final int listPreferredItemHeight = 0x7f0100aa;
+ public static final int listPreferredItemHeightLarge = 0x7f0100ac;
+ public static final int listPreferredItemHeightSmall = 0x7f0100ab;
+ public static final int listPreferredItemPaddingLeft = 0x7f0100ad;
+ public static final int listPreferredItemPaddingRight = 0x7f0100ae;
+ public static final int logo = 0x7f01000a;
+ public static final int logoDescription = 0x7f0100de;
+ public static final int maxButtonHeight = 0x7f0100d9;
+ public static final int measureWithLargestChild = 0x7f010048;
+ public static final int multiChoiceItemLayout = 0x7f010021;
+ public static final int navigationContentDescription = 0x7f0100dd;
+ public static final int navigationIcon = 0x7f0100dc;
+ public static final int navigationMode = 0x7f010004;
+ public static final int overlapAnchor = 0x7f010050;
+ public static final int paddingEnd = 0x7f0100e2;
+ public static final int paddingStart = 0x7f0100e1;
+ public static final int panelBackground = 0x7f0100b3;
+ public static final int panelMenuListTheme = 0x7f0100b5;
+ public static final int panelMenuListWidth = 0x7f0100b4;
+ public static final int popupMenuStyle = 0x7f0100a2;
+ public static final int popupTheme = 0x7f01001b;
+ public static final int popupWindowStyle = 0x7f0100a3;
+ public static final int preserveIconSpacing = 0x7f01004f;
+ public static final int progressBarPadding = 0x7f010013;
+ public static final int progressBarStyle = 0x7f010011;
+ public static final int queryBackground = 0x7f01005d;
+ public static final int queryHint = 0x7f010054;
+ public static final int radioButtonStyle = 0x7f0100ce;
+ public static final int ratingBarStyle = 0x7f0100cf;
+ public static final int searchHintIcon = 0x7f010059;
+ public static final int searchIcon = 0x7f010058;
+ public static final int searchViewStyle = 0x7f0100a9;
+ public static final int selectableItemBackground = 0x7f01009a;
+ public static final int selectableItemBackgroundBorderless = 0x7f01009b;
+ public static final int showAsAction = 0x7f01004b;
+ public static final int showDividers = 0x7f010049;
+ public static final int showText = 0x7f010067;
+ public static final int singleChoiceItemLayout = 0x7f010022;
+ public static final int spinBars = 0x7f010028;
+ public static final int spinnerDropDownItemStyle = 0x7f010095;
+ public static final int spinnerStyle = 0x7f0100d0;
+ public static final int splitTrack = 0x7f010066;
+ public static final int state_above_anchor = 0x7f010051;
+ public static final int submitBackground = 0x7f01005e;
+ public static final int subtitle = 0x7f010006;
+ public static final int subtitleTextAppearance = 0x7f0100d3;
+ public static final int subtitleTextColor = 0x7f0100e0;
+ public static final int subtitleTextStyle = 0x7f010008;
+ public static final int suggestionRowLayout = 0x7f01005c;
+ public static final int switchMinWidth = 0x7f010064;
+ public static final int switchPadding = 0x7f010065;
+ public static final int switchStyle = 0x7f0100d1;
+ public static final int switchTextAppearance = 0x7f010063;
+ public static final int textAllCaps = 0x7f010024;
+ public static final int textAppearanceLargePopupMenu = 0x7f01008e;
+ public static final int textAppearanceListItem = 0x7f0100b1;
+ public static final int textAppearanceListItemSmall = 0x7f0100b2;
+ public static final int textAppearanceSearchResultSubtitle = 0x7f0100a7;
+ public static final int textAppearanceSearchResultTitle = 0x7f0100a6;
+ public static final int textAppearanceSmallPopupMenu = 0x7f01008f;
+ public static final int textColorAlertDialogListItem = 0x7f0100c4;
+ public static final int textColorSearchUrl = 0x7f0100a8;
+ public static final int theme = 0x7f0100e3;
+ public static final int thickness = 0x7f01002e;
+ public static final int thumbTextPadding = 0x7f010062;
+ public static final int title = 0x7f010003;
+ public static final int titleMarginBottom = 0x7f0100d8;
+ public static final int titleMarginEnd = 0x7f0100d6;
+ public static final int titleMarginStart = 0x7f0100d5;
+ public static final int titleMarginTop = 0x7f0100d7;
+ public static final int titleMargins = 0x7f0100d4;
+ public static final int titleTextAppearance = 0x7f0100d2;
+ public static final int titleTextColor = 0x7f0100df;
+ public static final int titleTextStyle = 0x7f010007;
+ public static final int toolbarNavigationButtonStyle = 0x7f0100a1;
+ public static final int toolbarStyle = 0x7f0100a0;
+ public static final int track = 0x7f010061;
+ public static final int voiceIcon = 0x7f01005a;
+ public static final int windowActionBar = 0x7f010068;
+ public static final int windowActionBarOverlay = 0x7f01006a;
+ public static final int windowActionModeOverlay = 0x7f01006b;
+ public static final int windowFixedHeightMajor = 0x7f01006f;
+ public static final int windowFixedHeightMinor = 0x7f01006d;
+ public static final int windowFixedWidthMajor = 0x7f01006c;
+ public static final int windowFixedWidthMinor = 0x7f01006e;
+ public static final int windowMinWidthMajor = 0x7f010070;
+ public static final int windowMinWidthMinor = 0x7f010071;
+ public static final int windowNoTitle = 0x7f010069;
+ }
+ public static final class bool {
+ public static final int abc_action_bar_embed_tabs = 0x7f0a0002;
+ public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f0a0000;
+ public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f0a0003;
+ public static final int abc_config_actionMenuItemAllCaps = 0x7f0a0004;
+ public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f0a0001;
+ public static final int abc_config_closeDialogWhenTouchOutside = 0x7f0a0005;
+ public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f0a0006;
+ }
+ public static final class color {
+ public static final int abc_background_cache_hint_selector_material_dark = 0x7f0c003b;
+ public static final int abc_background_cache_hint_selector_material_light = 0x7f0c003c;
+ public static final int abc_color_highlight_material = 0x7f0c003d;
+ public static final int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static final int abc_primary_text_disable_only_material_dark = 0x7f0c003e;
+ public static final int abc_primary_text_disable_only_material_light = 0x7f0c003f;
+ public static final int abc_primary_text_material_dark = 0x7f0c0040;
+ public static final int abc_primary_text_material_light = 0x7f0c0041;
+ public static final int abc_search_url_text = 0x7f0c0042;
+ public static final int abc_search_url_text_normal = 0x7f0c0001;
+ public static final int abc_search_url_text_pressed = 0x7f0c0002;
+ public static final int abc_search_url_text_selected = 0x7f0c0003;
+ public static final int abc_secondary_text_material_dark = 0x7f0c0043;
+ public static final int abc_secondary_text_material_light = 0x7f0c0044;
+ public static final int accent_material_dark = 0x7f0c0004;
+ public static final int accent_material_light = 0x7f0c0005;
+ public static final int background_floating_material_dark = 0x7f0c0006;
+ public static final int background_floating_material_light = 0x7f0c0007;
+ public static final int background_material_dark = 0x7f0c0008;
+ public static final int background_material_light = 0x7f0c0009;
+ public static final int bright_foreground_disabled_material_dark = 0x7f0c000a;
+ public static final int bright_foreground_disabled_material_light = 0x7f0c000b;
+ public static final int bright_foreground_inverse_material_dark = 0x7f0c000c;
+ public static final int bright_foreground_inverse_material_light = 0x7f0c000d;
+ public static final int bright_foreground_material_dark = 0x7f0c000e;
+ public static final int bright_foreground_material_light = 0x7f0c000f;
+ public static final int button_material_dark = 0x7f0c0010;
+ public static final int button_material_light = 0x7f0c0011;
+ public static final int dim_foreground_disabled_material_dark = 0x7f0c0013;
+ public static final int dim_foreground_disabled_material_light = 0x7f0c0014;
+ public static final int dim_foreground_material_dark = 0x7f0c0015;
+ public static final int dim_foreground_material_light = 0x7f0c0016;
+ public static final int foreground_material_dark = 0x7f0c0017;
+ public static final int foreground_material_light = 0x7f0c0018;
+ public static final int highlighted_text_material_dark = 0x7f0c0019;
+ public static final int highlighted_text_material_light = 0x7f0c001a;
+ public static final int hint_foreground_material_dark = 0x7f0c001b;
+ public static final int hint_foreground_material_light = 0x7f0c001c;
+ public static final int material_blue_grey_800 = 0x7f0c001d;
+ public static final int material_blue_grey_900 = 0x7f0c001e;
+ public static final int material_blue_grey_950 = 0x7f0c001f;
+ public static final int material_deep_teal_200 = 0x7f0c0020;
+ public static final int material_deep_teal_500 = 0x7f0c0021;
+ public static final int material_grey_100 = 0x7f0c0022;
+ public static final int material_grey_300 = 0x7f0c0023;
+ public static final int material_grey_50 = 0x7f0c0024;
+ public static final int material_grey_600 = 0x7f0c0025;
+ public static final int material_grey_800 = 0x7f0c0026;
+ public static final int material_grey_850 = 0x7f0c0027;
+ public static final int material_grey_900 = 0x7f0c0028;
+ public static final int primary_dark_material_dark = 0x7f0c0029;
+ public static final int primary_dark_material_light = 0x7f0c002a;
+ public static final int primary_material_dark = 0x7f0c002b;
+ public static final int primary_material_light = 0x7f0c002c;
+ public static final int primary_text_default_material_dark = 0x7f0c002d;
+ public static final int primary_text_default_material_light = 0x7f0c002e;
+ public static final int primary_text_disabled_material_dark = 0x7f0c002f;
+ public static final int primary_text_disabled_material_light = 0x7f0c0030;
+ public static final int ripple_material_dark = 0x7f0c0031;
+ public static final int ripple_material_light = 0x7f0c0032;
+ public static final int secondary_text_default_material_dark = 0x7f0c0033;
+ public static final int secondary_text_default_material_light = 0x7f0c0034;
+ public static final int secondary_text_disabled_material_dark = 0x7f0c0035;
+ public static final int secondary_text_disabled_material_light = 0x7f0c0036;
+ public static final int switch_thumb_disabled_material_dark = 0x7f0c0037;
+ public static final int switch_thumb_disabled_material_light = 0x7f0c0038;
+ public static final int switch_thumb_material_dark = 0x7f0c0045;
+ public static final int switch_thumb_material_light = 0x7f0c0046;
+ public static final int switch_thumb_normal_material_dark = 0x7f0c0039;
+ public static final int switch_thumb_normal_material_light = 0x7f0c003a;
+ }
+ public static final class dimen {
+ public static final int abc_action_bar_content_inset_material = 0x7f08000b;
+ public static final int abc_action_bar_default_height_material = 0x7f080001;
+ public static final int abc_action_bar_default_padding_end_material = 0x7f08000c;
+ public static final int abc_action_bar_default_padding_start_material = 0x7f08000d;
+ public static final int abc_action_bar_icon_vertical_padding_material = 0x7f08000f;
+ public static final int abc_action_bar_overflow_padding_end_material = 0x7f080010;
+ public static final int abc_action_bar_overflow_padding_start_material = 0x7f080011;
+ public static final int abc_action_bar_progress_bar_size = 0x7f080002;
+ public static final int abc_action_bar_stacked_max_height = 0x7f080012;
+ public static final int abc_action_bar_stacked_tab_max_width = 0x7f080013;
+ public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f080014;
+ public static final int abc_action_bar_subtitle_top_margin_material = 0x7f080015;
+ public static final int abc_action_button_min_height_material = 0x7f080016;
+ public static final int abc_action_button_min_width_material = 0x7f080017;
+ public static final int abc_action_button_min_width_overflow_material = 0x7f080018;
+ public static final int abc_alert_dialog_button_bar_height = 0x7f080000;
+ public static final int abc_button_inset_horizontal_material = 0x7f080019;
+ public static final int abc_button_inset_vertical_material = 0x7f08001a;
+ public static final int abc_button_padding_horizontal_material = 0x7f08001b;
+ public static final int abc_button_padding_vertical_material = 0x7f08001c;
+ public static final int abc_config_prefDialogWidth = 0x7f080005;
+ public static final int abc_control_corner_material = 0x7f08001d;
+ public static final int abc_control_inset_material = 0x7f08001e;
+ public static final int abc_control_padding_material = 0x7f08001f;
+ public static final int abc_dialog_list_padding_vertical_material = 0x7f080020;
+ public static final int abc_dialog_min_width_major = 0x7f080021;
+ public static final int abc_dialog_min_width_minor = 0x7f080022;
+ public static final int abc_dialog_padding_material = 0x7f080023;
+ public static final int abc_dialog_padding_top_material = 0x7f080024;
+ public static final int abc_disabled_alpha_material_dark = 0x7f080025;
+ public static final int abc_disabled_alpha_material_light = 0x7f080026;
+ public static final int abc_dropdownitem_icon_width = 0x7f080027;
+ public static final int abc_dropdownitem_text_padding_left = 0x7f080028;
+ public static final int abc_dropdownitem_text_padding_right = 0x7f080029;
+ public static final int abc_edit_text_inset_bottom_material = 0x7f08002a;
+ public static final int abc_edit_text_inset_horizontal_material = 0x7f08002b;
+ public static final int abc_edit_text_inset_top_material = 0x7f08002c;
+ public static final int abc_floating_window_z = 0x7f08002d;
+ public static final int abc_list_item_padding_horizontal_material = 0x7f08002e;
+ public static final int abc_panel_menu_list_width = 0x7f08002f;
+ public static final int abc_search_view_preferred_width = 0x7f080030;
+ public static final int abc_search_view_text_min_width = 0x7f080006;
+ public static final int abc_switch_padding = 0x7f08000e;
+ public static final int abc_text_size_body_1_material = 0x7f080031;
+ public static final int abc_text_size_body_2_material = 0x7f080032;
+ public static final int abc_text_size_button_material = 0x7f080033;
+ public static final int abc_text_size_caption_material = 0x7f080034;
+ public static final int abc_text_size_display_1_material = 0x7f080035;
+ public static final int abc_text_size_display_2_material = 0x7f080036;
+ public static final int abc_text_size_display_3_material = 0x7f080037;
+ public static final int abc_text_size_display_4_material = 0x7f080038;
+ public static final int abc_text_size_headline_material = 0x7f080039;
+ public static final int abc_text_size_large_material = 0x7f08003a;
+ public static final int abc_text_size_medium_material = 0x7f08003b;
+ public static final int abc_text_size_menu_material = 0x7f08003c;
+ public static final int abc_text_size_small_material = 0x7f08003d;
+ public static final int abc_text_size_subhead_material = 0x7f08003e;
+ public static final int abc_text_size_subtitle_material_toolbar = 0x7f080003;
+ public static final int abc_text_size_title_material = 0x7f08003f;
+ public static final int abc_text_size_title_material_toolbar = 0x7f080004;
+ public static final int dialog_fixed_height_major = 0x7f080007;
+ public static final int dialog_fixed_height_minor = 0x7f080008;
+ public static final int dialog_fixed_width_major = 0x7f080009;
+ public static final int dialog_fixed_width_minor = 0x7f08000a;
+ public static final int disabled_alpha_material_dark = 0x7f080040;
+ public static final int disabled_alpha_material_light = 0x7f080041;
+ public static final int highlight_alpha_material_colored = 0x7f080042;
+ public static final int highlight_alpha_material_dark = 0x7f080043;
+ public static final int highlight_alpha_material_light = 0x7f080044;
+ public static final int notification_large_icon_height = 0x7f080045;
+ public static final int notification_large_icon_width = 0x7f080046;
+ public static final int notification_subtext_size = 0x7f080047;
+ }
+ public static final class drawable {
+ public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static final int abc_action_bar_item_background_material = 0x7f020001;
+ public static final int abc_btn_borderless_material = 0x7f020002;
+ public static final int abc_btn_check_material = 0x7f020003;
+ public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static final int abc_btn_colored_material = 0x7f020006;
+ public static final int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static final int abc_btn_radio_material = 0x7f020008;
+ public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static final int abc_cab_background_internal_bg = 0x7f02000f;
+ public static final int abc_cab_background_top_material = 0x7f020010;
+ public static final int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static final int abc_control_background_material = 0x7f020012;
+ public static final int abc_dialog_material_background_dark = 0x7f020013;
+ public static final int abc_dialog_material_background_light = 0x7f020014;
+ public static final int abc_edit_text_material = 0x7f020015;
+ public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static final int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static final int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020021;
+ public static final int abc_item_background_holo_dark = 0x7f020022;
+ public static final int abc_item_background_holo_light = 0x7f020023;
+ public static final int abc_list_divider_mtrl_alpha = 0x7f020024;
+ public static final int abc_list_focused_holo = 0x7f020025;
+ public static final int abc_list_longpressed_holo = 0x7f020026;
+ public static final int abc_list_pressed_holo_dark = 0x7f020027;
+ public static final int abc_list_pressed_holo_light = 0x7f020028;
+ public static final int abc_list_selector_background_transition_holo_dark = 0x7f020029;
+ public static final int abc_list_selector_background_transition_holo_light = 0x7f02002a;
+ public static final int abc_list_selector_disabled_holo_dark = 0x7f02002b;
+ public static final int abc_list_selector_disabled_holo_light = 0x7f02002c;
+ public static final int abc_list_selector_holo_dark = 0x7f02002d;
+ public static final int abc_list_selector_holo_light = 0x7f02002e;
+ public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f02002f;
+ public static final int abc_popup_background_mtrl_mult = 0x7f020030;
+ public static final int abc_ratingbar_full_material = 0x7f020031;
+ public static final int abc_spinner_mtrl_am_alpha = 0x7f020032;
+ public static final int abc_spinner_textfield_background_material = 0x7f020033;
+ public static final int abc_switch_thumb_material = 0x7f020034;
+ public static final int abc_switch_track_mtrl_alpha = 0x7f020035;
+ public static final int abc_tab_indicator_material = 0x7f020036;
+ public static final int abc_tab_indicator_mtrl_alpha = 0x7f020037;
+ public static final int abc_text_cursor_material = 0x7f020038;
+ public static final int abc_textfield_activated_mtrl_alpha = 0x7f020039;
+ public static final int abc_textfield_default_mtrl_alpha = 0x7f02003a;
+ public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f02003b;
+ public static final int abc_textfield_search_default_mtrl_alpha = 0x7f02003c;
+ public static final int abc_textfield_search_material = 0x7f02003d;
+ public static final int notification_template_icon_bg = 0x7f02003e;
+ }
+ public static final class id {
+ public static final int action0 = 0x7f0d0058;
+ public static final int action_bar = 0x7f0d0048;
+ public static final int action_bar_activity_content = 0x7f0d0000;
+ public static final int action_bar_container = 0x7f0d0047;
+ public static final int action_bar_root = 0x7f0d0043;
+ public static final int action_bar_spinner = 0x7f0d0001;
+ public static final int action_bar_subtitle = 0x7f0d002c;
+ public static final int action_bar_title = 0x7f0d002b;
+ public static final int action_context_bar = 0x7f0d0049;
+ public static final int action_divider = 0x7f0d005c;
+ public static final int action_menu_divider = 0x7f0d0002;
+ public static final int action_menu_presenter = 0x7f0d0003;
+ public static final int action_mode_bar = 0x7f0d0045;
+ public static final int action_mode_bar_stub = 0x7f0d0044;
+ public static final int action_mode_close_button = 0x7f0d002d;
+ public static final int activity_chooser_view_content = 0x7f0d002e;
+ public static final int alertTitle = 0x7f0d0038;
+ public static final int always = 0x7f0d0025;
+ public static final int beginning = 0x7f0d0022;
+ public static final int buttonPanel = 0x7f0d003e;
+ public static final int cancel_action = 0x7f0d0059;
+ public static final int checkbox = 0x7f0d0040;
+ public static final int chronometer = 0x7f0d005f;
+ public static final int collapseActionView = 0x7f0d0026;
+ public static final int contentPanel = 0x7f0d0039;
+ public static final int custom = 0x7f0d003d;
+ public static final int customPanel = 0x7f0d003c;
+ public static final int decor_content_parent = 0x7f0d0046;
+ public static final int default_activity_button = 0x7f0d0031;
+ public static final int disableHome = 0x7f0d000e;
+ public static final int edit_query = 0x7f0d004a;
+ public static final int end = 0x7f0d0023;
+ public static final int end_padder = 0x7f0d0064;
+ public static final int expand_activities_button = 0x7f0d002f;
+ public static final int expanded_menu = 0x7f0d003f;
+ public static final int home = 0x7f0d0004;
+ public static final int homeAsUp = 0x7f0d000f;
+ public static final int icon = 0x7f0d0033;
+ public static final int ifRoom = 0x7f0d0027;
+ public static final int image = 0x7f0d0030;
+ public static final int info = 0x7f0d0063;
+ public static final int line1 = 0x7f0d005d;
+ public static final int line3 = 0x7f0d0061;
+ public static final int listMode = 0x7f0d000b;
+ public static final int list_item = 0x7f0d0032;
+ public static final int media_actions = 0x7f0d005b;
+ public static final int middle = 0x7f0d0024;
+ public static final int multiply = 0x7f0d0015;
+ public static final int never = 0x7f0d0028;
+ public static final int none = 0x7f0d0010;
+ public static final int normal = 0x7f0d000c;
+ public static final int parentPanel = 0x7f0d0035;
+ public static final int progress_circular = 0x7f0d0005;
+ public static final int progress_horizontal = 0x7f0d0006;
+ public static final int radio = 0x7f0d0042;
+ public static final int screen = 0x7f0d0016;
+ public static final int scrollView = 0x7f0d003a;
+ public static final int search_badge = 0x7f0d004c;
+ public static final int search_bar = 0x7f0d004b;
+ public static final int search_button = 0x7f0d004d;
+ public static final int search_close_btn = 0x7f0d0052;
+ public static final int search_edit_frame = 0x7f0d004e;
+ public static final int search_go_btn = 0x7f0d0054;
+ public static final int search_mag_icon = 0x7f0d004f;
+ public static final int search_plate = 0x7f0d0050;
+ public static final int search_src_text = 0x7f0d0051;
+ public static final int search_voice_btn = 0x7f0d0055;
+ public static final int select_dialog_listview = 0x7f0d0056;
+ public static final int shortcut = 0x7f0d0041;
+ public static final int showCustom = 0x7f0d0011;
+ public static final int showHome = 0x7f0d0012;
+ public static final int showTitle = 0x7f0d0013;
+ public static final int split_action_bar = 0x7f0d0008;
+ public static final int src_atop = 0x7f0d0017;
+ public static final int src_in = 0x7f0d0018;
+ public static final int src_over = 0x7f0d0019;
+ public static final int status_bar_latest_event_content = 0x7f0d005a;
+ public static final int submit_area = 0x7f0d0053;
+ public static final int tabMode = 0x7f0d000d;
+ public static final int text = 0x7f0d0062;
+ public static final int text2 = 0x7f0d0060;
+ public static final int textSpacerNoButtons = 0x7f0d003b;
+ public static final int time = 0x7f0d005e;
+ public static final int title = 0x7f0d0034;
+ public static final int title_template = 0x7f0d0037;
+ public static final int topPanel = 0x7f0d0036;
+ public static final int up = 0x7f0d0009;
+ public static final int useLogo = 0x7f0d0014;
+ public static final int withText = 0x7f0d0029;
+ public static final int wrap_content = 0x7f0d002a;
+ }
+ public static final class integer {
+ public static final int abc_config_activityDefaultDur = 0x7f0b0001;
+ public static final int abc_config_activityShortDur = 0x7f0b0002;
+ public static final int abc_max_action_buttons = 0x7f0b0000;
+ public static final int cancel_button_image_alpha = 0x7f0b0003;
+ public static final int status_bar_notification_info_maxnum = 0x7f0b0004;
+ }
+ public static final class layout {
+ public static final int abc_action_bar_title_item = 0x7f040000;
+ public static final int abc_action_bar_up_container = 0x7f040001;
+ public static final int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static final int abc_action_menu_item_layout = 0x7f040003;
+ public static final int abc_action_menu_layout = 0x7f040004;
+ public static final int abc_action_mode_bar = 0x7f040005;
+ public static final int abc_action_mode_close_item_material = 0x7f040006;
+ public static final int abc_activity_chooser_view = 0x7f040007;
+ public static final int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static final int abc_alert_dialog_material = 0x7f040009;
+ public static final int abc_dialog_title_material = 0x7f04000a;
+ public static final int abc_expanded_menu_layout = 0x7f04000b;
+ public static final int abc_list_menu_item_checkbox = 0x7f04000c;
+ public static final int abc_list_menu_item_icon = 0x7f04000d;
+ public static final int abc_list_menu_item_layout = 0x7f04000e;
+ public static final int abc_list_menu_item_radio = 0x7f04000f;
+ public static final int abc_popup_menu_item_layout = 0x7f040010;
+ public static final int abc_screen_content_include = 0x7f040011;
+ public static final int abc_screen_simple = 0x7f040012;
+ public static final int abc_screen_simple_overlay_action_mode = 0x7f040013;
+ public static final int abc_screen_toolbar = 0x7f040014;
+ public static final int abc_search_dropdown_item_icons_2line = 0x7f040015;
+ public static final int abc_search_view = 0x7f040016;
+ public static final int abc_select_dialog_material = 0x7f040017;
+ public static final int notification_media_action = 0x7f04001a;
+ public static final int notification_media_cancel_action = 0x7f04001b;
+ public static final int notification_template_big_media = 0x7f04001c;
+ public static final int notification_template_big_media_narrow = 0x7f04001d;
+ public static final int notification_template_lines = 0x7f04001e;
+ public static final int notification_template_media = 0x7f04001f;
+ public static final int notification_template_part_chronometer = 0x7f040020;
+ public static final int notification_template_part_time = 0x7f040021;
+ public static final int select_dialog_item_material = 0x7f040025;
+ public static final int select_dialog_multichoice_material = 0x7f040026;
+ public static final int select_dialog_singlechoice_material = 0x7f040027;
+ public static final int support_simple_spinner_dropdown_item = 0x7f040028;
+ }
+ public static final class string {
+ public static final int abc_action_bar_home_description = 0x7f070000;
+ public static final int abc_action_bar_home_description_format = 0x7f070001;
+ public static final int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static final int abc_action_bar_up_description = 0x7f070003;
+ public static final int abc_action_menu_overflow_description = 0x7f070004;
+ public static final int abc_action_mode_done = 0x7f070005;
+ public static final int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static final int abc_activitychooserview_choose_application = 0x7f070007;
+ public static final int abc_search_hint = 0x7f070008;
+ public static final int abc_searchview_description_clear = 0x7f070009;
+ public static final int abc_searchview_description_query = 0x7f07000a;
+ public static final int abc_searchview_description_search = 0x7f07000b;
+ public static final int abc_searchview_description_submit = 0x7f07000c;
+ public static final int abc_searchview_description_voice = 0x7f07000d;
+ public static final int abc_shareactionprovider_share_with = 0x7f07000e;
+ public static final int abc_shareactionprovider_share_with_application = 0x7f07000f;
+ public static final int abc_toolbar_collapse_description = 0x7f070010;
+ public static final int status_bar_notification_info_overflow = 0x7f070011;
+ }
+ public static final class style {
+ public static final int AlertDialog_AppCompat = 0x7f09007a;
+ public static final int AlertDialog_AppCompat_Light = 0x7f09007b;
+ public static final int Animation_AppCompat_Dialog = 0x7f09007c;
+ public static final int Animation_AppCompat_DropDownUp = 0x7f09007d;
+ public static final int Base_AlertDialog_AppCompat = 0x7f090080;
+ public static final int Base_AlertDialog_AppCompat_Light = 0x7f090081;
+ public static final int Base_Animation_AppCompat_Dialog = 0x7f090082;
+ public static final int Base_Animation_AppCompat_DropDownUp = 0x7f090083;
+ public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f090085;
+ public static final int Base_DialogWindowTitle_AppCompat = 0x7f090084;
+ public static final int Base_TextAppearance_AppCompat = 0x7f09002d;
+ public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f09002e;
+ public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f09002f;
+ public static final int Base_TextAppearance_AppCompat_Button = 0x7f090018;
+ public static final int Base_TextAppearance_AppCompat_Caption = 0x7f090030;
+ public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f090031;
+ public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f090032;
+ public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f090033;
+ public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f090034;
+ public static final int Base_TextAppearance_AppCompat_Headline = 0x7f090035;
+ public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f090003;
+ public static final int Base_TextAppearance_AppCompat_Large = 0x7f090036;
+ public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f090004;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f090037;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f090038;
+ public static final int Base_TextAppearance_AppCompat_Medium = 0x7f090039;
+ public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f090005;
+ public static final int Base_TextAppearance_AppCompat_Menu = 0x7f09003a;
+ public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f090086;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f09003b;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f09003c;
+ public static final int Base_TextAppearance_AppCompat_Small = 0x7f09003d;
+ public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f090006;
+ public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f09003e;
+ public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f090007;
+ public static final int Base_TextAppearance_AppCompat_Title = 0x7f09003f;
+ public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f090008;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f090040;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f090041;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f090042;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f090043;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f090044;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f090045;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f090046;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f090047;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f090076;
+ public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f090087;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f090048;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f090049;
+ public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f09004a;
+ public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f09004b;
+ public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f090088;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f09004c;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f09004d;
+ public static final int Base_ThemeOverlay_AppCompat = 0x7f090091;
+ public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f090092;
+ public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f090093;
+ public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f090094;
+ public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f090095;
+ public static final int Base_Theme_AppCompat = 0x7f09004e;
+ public static final int Base_Theme_AppCompat_CompactMenu = 0x7f090089;
+ public static final int Base_Theme_AppCompat_Dialog = 0x7f090009;
+ public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f090001;
+ public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f09008a;
+ public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f09008b;
+ public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f09008c;
+ public static final int Base_Theme_AppCompat_Light = 0x7f09004f;
+ public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f09008d;
+ public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f09000a;
+ public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f090002;
+ public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f09008e;
+ public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f09008f;
+ public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f090090;
+ public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f09000b;
+ public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f09000c;
+ public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f090014;
+ public static final int Base_V12_Widget_AppCompat_EditText = 0x7f090015;
+ public static final int Base_V21_Theme_AppCompat = 0x7f090050;
+ public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f090051;
+ public static final int Base_V21_Theme_AppCompat_Light = 0x7f090052;
+ public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f090053;
+ public static final int Base_V22_Theme_AppCompat = 0x7f090074;
+ public static final int Base_V22_Theme_AppCompat_Light = 0x7f090075;
+ public static final int Base_V23_Theme_AppCompat = 0x7f090077;
+ public static final int Base_V23_Theme_AppCompat_Light = 0x7f090078;
+ public static final int Base_V7_Theme_AppCompat = 0x7f090096;
+ public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f090097;
+ public static final int Base_V7_Theme_AppCompat_Light = 0x7f090098;
+ public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f090099;
+ public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f09009a;
+ public static final int Base_V7_Widget_AppCompat_EditText = 0x7f09009b;
+ public static final int Base_Widget_AppCompat_ActionBar = 0x7f09009c;
+ public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f09009d;
+ public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f09009e;
+ public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f090054;
+ public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f090055;
+ public static final int Base_Widget_AppCompat_ActionButton = 0x7f090056;
+ public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f090057;
+ public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f090058;
+ public static final int Base_Widget_AppCompat_ActionMode = 0x7f09009f;
+ public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0900a0;
+ public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f090016;
+ public static final int Base_Widget_AppCompat_Button = 0x7f090059;
+ public static final int Base_Widget_AppCompat_ButtonBar = 0x7f09005d;
+ public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0900a2;
+ public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f09005a;
+ public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f09005b;
+ public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0900a1;
+ public static final int Base_Widget_AppCompat_Button_Colored = 0x7f090079;
+ public static final int Base_Widget_AppCompat_Button_Small = 0x7f09005c;
+ public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f09005e;
+ public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f09005f;
+ public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0900a3;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f090000;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0900a4;
+ public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f090060;
+ public static final int Base_Widget_AppCompat_EditText = 0x7f090017;
+ public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0900a5;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0900a6;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0900a7;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f090061;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f090062;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f090063;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f090064;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f090065;
+ public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f090066;
+ public static final int Base_Widget_AppCompat_ListView = 0x7f090067;
+ public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f090068;
+ public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f090069;
+ public static final int Base_Widget_AppCompat_PopupMenu = 0x7f09006a;
+ public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f09006b;
+ public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0900a8;
+ public static final int Base_Widget_AppCompat_ProgressBar = 0x7f09000d;
+ public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f09000e;
+ public static final int Base_Widget_AppCompat_RatingBar = 0x7f09006c;
+ public static final int Base_Widget_AppCompat_SearchView = 0x7f0900a9;
+ public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0900aa;
+ public static final int Base_Widget_AppCompat_Spinner = 0x7f09006d;
+ public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f09006e;
+ public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f09006f;
+ public static final int Base_Widget_AppCompat_Toolbar = 0x7f0900ab;
+ public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f090070;
+ public static final int Platform_AppCompat = 0x7f09000f;
+ public static final int Platform_AppCompat_Light = 0x7f090010;
+ public static final int Platform_ThemeOverlay_AppCompat = 0x7f090071;
+ public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f090072;
+ public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f090073;
+ public static final int Platform_V11_AppCompat = 0x7f090011;
+ public static final int Platform_V11_AppCompat_Light = 0x7f090012;
+ public static final int Platform_V14_AppCompat = 0x7f090019;
+ public static final int Platform_V14_AppCompat_Light = 0x7f09001a;
+ public static final int Platform_Widget_AppCompat_Spinner = 0x7f090013;
+ public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f090020;
+ public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f090021;
+ public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow = 0x7f090022;
+ public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f090023;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f090024;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f090025;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f090026;
+ public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f09002c;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f090027;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f090028;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f090029;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f09002a;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f09002b;
+ public static final int TextAppearance_AppCompat = 0x7f0900b6;
+ public static final int TextAppearance_AppCompat_Body1 = 0x7f0900b7;
+ public static final int TextAppearance_AppCompat_Body2 = 0x7f0900b8;
+ public static final int TextAppearance_AppCompat_Button = 0x7f0900b9;
+ public static final int TextAppearance_AppCompat_Caption = 0x7f0900ba;
+ public static final int TextAppearance_AppCompat_Display1 = 0x7f0900bb;
+ public static final int TextAppearance_AppCompat_Display2 = 0x7f0900bc;
+ public static final int TextAppearance_AppCompat_Display3 = 0x7f0900bd;
+ public static final int TextAppearance_AppCompat_Display4 = 0x7f0900be;
+ public static final int TextAppearance_AppCompat_Headline = 0x7f0900bf;
+ public static final int TextAppearance_AppCompat_Inverse = 0x7f0900c0;
+ public static final int TextAppearance_AppCompat_Large = 0x7f0900c1;
+ public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0900c2;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0900c3;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0900c4;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0900c5;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0900c6;
+ public static final int TextAppearance_AppCompat_Medium = 0x7f0900c7;
+ public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0900c8;
+ public static final int TextAppearance_AppCompat_Menu = 0x7f0900c9;
+ public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0900ca;
+ public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0900cb;
+ public static final int TextAppearance_AppCompat_Small = 0x7f0900cc;
+ public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0900cd;
+ public static final int TextAppearance_AppCompat_Subhead = 0x7f0900ce;
+ public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0900cf;
+ public static final int TextAppearance_AppCompat_Title = 0x7f0900d0;
+ public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0900d1;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0900d2;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0900d3;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0900d4;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0900d5;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0900d6;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0900d7;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0900d8;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0900d9;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0900da;
+ public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0900db;
+ public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0900dc;
+ public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0900dd;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0900de;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0900df;
+ public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0900e0;
+ public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0900e1;
+ public static final int TextAppearance_StatusBar_EventContent = 0x7f09001b;
+ public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f09001c;
+ public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f09001d;
+ public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f09001e;
+ public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f09001f;
+ public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0900e2;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0900e3;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0900e4;
+ public static final int ThemeOverlay_AppCompat = 0x7f0900fb;
+ public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0900fc;
+ public static final int ThemeOverlay_AppCompat_Dark = 0x7f0900fd;
+ public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0900fe;
+ public static final int ThemeOverlay_AppCompat_Light = 0x7f0900ff;
+ public static final int Theme_AppCompat = 0x7f0900e6;
+ public static final int Theme_AppCompat_CompactMenu = 0x7f0900e7;
+ public static final int Theme_AppCompat_Dialog = 0x7f0900e8;
+ public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0900eb;
+ public static final int Theme_AppCompat_Dialog_Alert = 0x7f0900e9;
+ public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0900ea;
+ public static final int Theme_AppCompat_Light = 0x7f0900ec;
+ public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0900ed;
+ public static final int Theme_AppCompat_Light_Dialog = 0x7f0900ee;
+ public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0900f1;
+ public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0900ef;
+ public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0900f0;
+ public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0900f2;
+ public static final int Theme_AppCompat_NoActionBar = 0x7f0900f3;
+ public static final int Widget_AppCompat_ActionBar = 0x7f090100;
+ public static final int Widget_AppCompat_ActionBar_Solid = 0x7f090101;
+ public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f090102;
+ public static final int Widget_AppCompat_ActionBar_TabText = 0x7f090103;
+ public static final int Widget_AppCompat_ActionBar_TabView = 0x7f090104;
+ public static final int Widget_AppCompat_ActionButton = 0x7f090105;
+ public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f090106;
+ public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f090107;
+ public static final int Widget_AppCompat_ActionMode = 0x7f090108;
+ public static final int Widget_AppCompat_ActivityChooserView = 0x7f090109;
+ public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f09010a;
+ public static final int Widget_AppCompat_Button = 0x7f09010b;
+ public static final int Widget_AppCompat_ButtonBar = 0x7f090111;
+ public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f090112;
+ public static final int Widget_AppCompat_Button_Borderless = 0x7f09010c;
+ public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f09010d;
+ public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f09010e;
+ public static final int Widget_AppCompat_Button_Colored = 0x7f09010f;
+ public static final int Widget_AppCompat_Button_Small = 0x7f090110;
+ public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f090113;
+ public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f090114;
+ public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f090115;
+ public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f090116;
+ public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f090117;
+ public static final int Widget_AppCompat_EditText = 0x7f090118;
+ public static final int Widget_AppCompat_Light_ActionBar = 0x7f090119;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f09011a;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f09011b;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f09011c;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f09011d;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f09011e;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f09011f;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f090120;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f090121;
+ public static final int Widget_AppCompat_Light_ActionButton = 0x7f090122;
+ public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f090123;
+ public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f090124;
+ public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f090125;
+ public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f090126;
+ public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f090127;
+ public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f090128;
+ public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f090129;
+ public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f09012a;
+ public static final int Widget_AppCompat_Light_PopupMenu = 0x7f09012b;
+ public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f09012c;
+ public static final int Widget_AppCompat_Light_SearchView = 0x7f09012d;
+ public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f09012e;
+ public static final int Widget_AppCompat_ListPopupWindow = 0x7f09012f;
+ public static final int Widget_AppCompat_ListView = 0x7f090130;
+ public static final int Widget_AppCompat_ListView_DropDown = 0x7f090131;
+ public static final int Widget_AppCompat_ListView_Menu = 0x7f090132;
+ public static final int Widget_AppCompat_PopupMenu = 0x7f090133;
+ public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f090134;
+ public static final int Widget_AppCompat_PopupWindow = 0x7f090135;
+ public static final int Widget_AppCompat_ProgressBar = 0x7f090136;
+ public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f090137;
+ public static final int Widget_AppCompat_RatingBar = 0x7f090138;
+ public static final int Widget_AppCompat_SearchView = 0x7f090139;
+ public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f09013a;
+ public static final int Widget_AppCompat_Spinner = 0x7f09013b;
+ public static final int Widget_AppCompat_Spinner_DropDown = 0x7f09013c;
+ public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f09013d;
+ public static final int Widget_AppCompat_Spinner_Underlined = 0x7f09013e;
+ public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f09013f;
+ public static final int Widget_AppCompat_Toolbar = 0x7f090140;
+ public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f090141;
+ }
+ public static final class styleable {
+ public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010096 };
+ public static final int[] ActionBarLayout = { 0x010100b3 };
+ public static final int ActionBarLayout_android_layout_gravity = 0;
+ public static final int ActionBar_background = 10;
+ public static final int ActionBar_backgroundSplit = 12;
+ public static final int ActionBar_backgroundStacked = 11;
+ public static final int ActionBar_contentInsetEnd = 21;
+ public static final int ActionBar_contentInsetLeft = 22;
+ public static final int ActionBar_contentInsetRight = 23;
+ public static final int ActionBar_contentInsetStart = 20;
+ public static final int ActionBar_customNavigationLayout = 13;
+ public static final int ActionBar_displayOptions = 3;
+ public static final int ActionBar_divider = 9;
+ public static final int ActionBar_elevation = 24;
+ public static final int ActionBar_height = 0;
+ public static final int ActionBar_hideOnContentScroll = 19;
+ public static final int ActionBar_homeAsUpIndicator = 26;
+ public static final int ActionBar_homeLayout = 14;
+ public static final int ActionBar_icon = 7;
+ public static final int ActionBar_indeterminateProgressStyle = 16;
+ public static final int ActionBar_itemPadding = 18;
+ public static final int ActionBar_logo = 8;
+ public static final int ActionBar_navigationMode = 2;
+ public static final int ActionBar_popupTheme = 25;
+ public static final int ActionBar_progressBarPadding = 17;
+ public static final int ActionBar_progressBarStyle = 15;
+ public static final int ActionBar_subtitle = 4;
+ public static final int ActionBar_subtitleTextStyle = 6;
+ public static final int ActionBar_title = 1;
+ public static final int ActionBar_titleTextStyle = 5;
+ public static final int[] ActionMenuItemView = { 0x0101013f };
+ public static final int ActionMenuItemView_android_minWidth = 0;
+ public static final int[] ActionMenuView = { };
+ public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static final int ActionMode_background = 3;
+ public static final int ActionMode_backgroundSplit = 4;
+ public static final int ActionMode_closeItemLayout = 5;
+ public static final int ActionMode_height = 0;
+ public static final int ActionMode_subtitleTextStyle = 2;
+ public static final int ActionMode_titleTextStyle = 1;
+ public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static final int ActivityChooserView_initialActivityCount = 0;
+ public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static final int AlertDialog_android_layout = 0;
+ public static final int AlertDialog_buttonPanelSideLayout = 1;
+ public static final int AlertDialog_listItemLayout = 5;
+ public static final int AlertDialog_listLayout = 2;
+ public static final int AlertDialog_multiChoiceItemLayout = 3;
+ public static final int AlertDialog_singleChoiceItemLayout = 4;
+ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010024 };
+ public static final int AppCompatTextView_android_textAppearance = 0;
+ public static final int AppCompatTextView_textAllCaps = 1;
+ public static final int[] CompoundButton = { 0x01010107, 0x7f010025, 0x7f010026 };
+ public static final int CompoundButton_android_button = 0;
+ public static final int CompoundButton_buttonTint = 1;
+ public static final int CompoundButton_buttonTintMode = 2;
+ public static final int[] DrawerArrowToggle = { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e };
+ public static final int DrawerArrowToggle_arrowHeadLength = 4;
+ public static final int DrawerArrowToggle_arrowShaftLength = 5;
+ public static final int DrawerArrowToggle_barLength = 6;
+ public static final int DrawerArrowToggle_color = 0;
+ public static final int DrawerArrowToggle_drawableSize = 2;
+ public static final int DrawerArrowToggle_gapBetweenBars = 3;
+ public static final int DrawerArrowToggle_spinBars = 1;
+ public static final int DrawerArrowToggle_thickness = 7;
+ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010048, 0x7f010049, 0x7f01004a };
+ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static final int LinearLayoutCompat_android_baselineAligned = 2;
+ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static final int LinearLayoutCompat_android_gravity = 0;
+ public static final int LinearLayoutCompat_android_orientation = 1;
+ public static final int LinearLayoutCompat_android_weightSum = 4;
+ public static final int LinearLayoutCompat_divider = 5;
+ public static final int LinearLayoutCompat_dividerPadding = 8;
+ public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static final int LinearLayoutCompat_showDividers = 7;
+ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static final int MenuGroup_android_checkableBehavior = 5;
+ public static final int MenuGroup_android_enabled = 0;
+ public static final int MenuGroup_android_id = 1;
+ public static final int MenuGroup_android_menuCategory = 3;
+ public static final int MenuGroup_android_orderInCategory = 4;
+ public static final int MenuGroup_android_visible = 2;
+ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e };
+ public static final int MenuItem_actionLayout = 14;
+ public static final int MenuItem_actionProviderClass = 16;
+ public static final int MenuItem_actionViewClass = 15;
+ public static final int MenuItem_android_alphabeticShortcut = 9;
+ public static final int MenuItem_android_checkable = 11;
+ public static final int MenuItem_android_checked = 3;
+ public static final int MenuItem_android_enabled = 1;
+ public static final int MenuItem_android_icon = 0;
+ public static final int MenuItem_android_id = 2;
+ public static final int MenuItem_android_menuCategory = 5;
+ public static final int MenuItem_android_numericShortcut = 10;
+ public static final int MenuItem_android_onClick = 12;
+ public static final int MenuItem_android_orderInCategory = 6;
+ public static final int MenuItem_android_title = 7;
+ public static final int MenuItem_android_titleCondensed = 8;
+ public static final int MenuItem_android_visible = 4;
+ public static final int MenuItem_showAsAction = 13;
+ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004f };
+ public static final int MenuView_android_headerBackground = 4;
+ public static final int MenuView_android_horizontalDivider = 2;
+ public static final int MenuView_android_itemBackground = 5;
+ public static final int MenuView_android_itemIconDisabledAlpha = 6;
+ public static final int MenuView_android_itemTextAppearance = 1;
+ public static final int MenuView_android_verticalDivider = 3;
+ public static final int MenuView_android_windowAnimationStyle = 0;
+ public static final int MenuView_preserveIconSpacing = 7;
+ public static final int[] PopupWindow = { 0x01010176, 0x7f010050 };
+ public static final int[] PopupWindowBackgroundState = { 0x7f010051 };
+ public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static final int PopupWindow_android_popupBackground = 0;
+ public static final int PopupWindow_overlapAnchor = 1;
+ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e };
+ public static final int SearchView_android_focusable = 0;
+ public static final int SearchView_android_imeOptions = 3;
+ public static final int SearchView_android_inputType = 2;
+ public static final int SearchView_android_maxWidth = 1;
+ public static final int SearchView_closeIcon = 8;
+ public static final int SearchView_commitIcon = 13;
+ public static final int SearchView_defaultQueryHint = 7;
+ public static final int SearchView_goIcon = 9;
+ public static final int SearchView_iconifiedByDefault = 5;
+ public static final int SearchView_layout = 4;
+ public static final int SearchView_queryBackground = 15;
+ public static final int SearchView_queryHint = 6;
+ public static final int SearchView_searchHintIcon = 11;
+ public static final int SearchView_searchIcon = 10;
+ public static final int SearchView_submitBackground = 16;
+ public static final int SearchView_suggestionRowLayout = 14;
+ public static final int SearchView_voiceIcon = 12;
+ public static final int[] Spinner = { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static final int Spinner_android_dropDownWidth = 2;
+ public static final int Spinner_android_popupBackground = 0;
+ public static final int Spinner_android_prompt = 1;
+ public static final int Spinner_popupTheme = 3;
+ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067 };
+ public static final int SwitchCompat_android_textOff = 1;
+ public static final int SwitchCompat_android_textOn = 0;
+ public static final int SwitchCompat_android_thumb = 2;
+ public static final int SwitchCompat_showText = 9;
+ public static final int SwitchCompat_splitTrack = 8;
+ public static final int SwitchCompat_switchMinWidth = 6;
+ public static final int SwitchCompat_switchPadding = 7;
+ public static final int SwitchCompat_switchTextAppearance = 5;
+ public static final int SwitchCompat_thumbTextPadding = 4;
+ public static final int SwitchCompat_track = 3;
+ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010024 };
+ public static final int TextAppearance_android_textColor = 3;
+ public static final int TextAppearance_android_textSize = 0;
+ public static final int TextAppearance_android_textStyle = 2;
+ public static final int TextAppearance_android_typeface = 1;
+ public static final int TextAppearance_textAllCaps = 8;
+ public static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1 };
+ public static final int Theme_actionBarDivider = 23;
+ public static final int Theme_actionBarItemBackground = 24;
+ public static final int Theme_actionBarPopupTheme = 17;
+ public static final int Theme_actionBarSize = 22;
+ public static final int Theme_actionBarSplitStyle = 19;
+ public static final int Theme_actionBarStyle = 18;
+ public static final int Theme_actionBarTabBarStyle = 13;
+ public static final int Theme_actionBarTabStyle = 12;
+ public static final int Theme_actionBarTabTextStyle = 14;
+ public static final int Theme_actionBarTheme = 20;
+ public static final int Theme_actionBarWidgetTheme = 21;
+ public static final int Theme_actionButtonStyle = 49;
+ public static final int Theme_actionDropDownStyle = 45;
+ public static final int Theme_actionMenuTextAppearance = 25;
+ public static final int Theme_actionMenuTextColor = 26;
+ public static final int Theme_actionModeBackground = 29;
+ public static final int Theme_actionModeCloseButtonStyle = 28;
+ public static final int Theme_actionModeCloseDrawable = 31;
+ public static final int Theme_actionModeCopyDrawable = 33;
+ public static final int Theme_actionModeCutDrawable = 32;
+ public static final int Theme_actionModeFindDrawable = 37;
+ public static final int Theme_actionModePasteDrawable = 34;
+ public static final int Theme_actionModePopupWindowStyle = 39;
+ public static final int Theme_actionModeSelectAllDrawable = 35;
+ public static final int Theme_actionModeShareDrawable = 36;
+ public static final int Theme_actionModeSplitBackground = 30;
+ public static final int Theme_actionModeStyle = 27;
+ public static final int Theme_actionModeWebSearchDrawable = 38;
+ public static final int Theme_actionOverflowButtonStyle = 15;
+ public static final int Theme_actionOverflowMenuStyle = 16;
+ public static final int Theme_activityChooserViewStyle = 57;
+ public static final int Theme_alertDialogButtonGroupStyle = 91;
+ public static final int Theme_alertDialogCenterButtons = 92;
+ public static final int Theme_alertDialogStyle = 90;
+ public static final int Theme_alertDialogTheme = 93;
+ public static final int Theme_android_windowAnimationStyle = 1;
+ public static final int Theme_android_windowIsFloating = 0;
+ public static final int Theme_autoCompleteTextViewStyle = 98;
+ public static final int Theme_borderlessButtonStyle = 54;
+ public static final int Theme_buttonBarButtonStyle = 51;
+ public static final int Theme_buttonBarNegativeButtonStyle = 96;
+ public static final int Theme_buttonBarNeutralButtonStyle = 97;
+ public static final int Theme_buttonBarPositiveButtonStyle = 95;
+ public static final int Theme_buttonBarStyle = 50;
+ public static final int Theme_buttonStyle = 99;
+ public static final int Theme_buttonStyleSmall = 100;
+ public static final int Theme_checkboxStyle = 101;
+ public static final int Theme_checkedTextViewStyle = 102;
+ public static final int Theme_colorAccent = 83;
+ public static final int Theme_colorButtonNormal = 87;
+ public static final int Theme_colorControlActivated = 85;
+ public static final int Theme_colorControlHighlight = 86;
+ public static final int Theme_colorControlNormal = 84;
+ public static final int Theme_colorPrimary = 81;
+ public static final int Theme_colorPrimaryDark = 82;
+ public static final int Theme_colorSwitchThumbNormal = 88;
+ public static final int Theme_controlBackground = 89;
+ public static final int Theme_dialogPreferredPadding = 43;
+ public static final int Theme_dialogTheme = 42;
+ public static final int Theme_dividerHorizontal = 56;
+ public static final int Theme_dividerVertical = 55;
+ public static final int Theme_dropDownListViewStyle = 73;
+ public static final int Theme_dropdownListPreferredItemHeight = 46;
+ public static final int Theme_editTextBackground = 63;
+ public static final int Theme_editTextColor = 62;
+ public static final int Theme_editTextStyle = 103;
+ public static final int Theme_homeAsUpIndicator = 48;
+ public static final int Theme_listChoiceBackgroundIndicator = 80;
+ public static final int Theme_listDividerAlertDialog = 44;
+ public static final int Theme_listPopupWindowStyle = 74;
+ public static final int Theme_listPreferredItemHeight = 68;
+ public static final int Theme_listPreferredItemHeightLarge = 70;
+ public static final int Theme_listPreferredItemHeightSmall = 69;
+ public static final int Theme_listPreferredItemPaddingLeft = 71;
+ public static final int Theme_listPreferredItemPaddingRight = 72;
+ public static final int Theme_panelBackground = 77;
+ public static final int Theme_panelMenuListTheme = 79;
+ public static final int Theme_panelMenuListWidth = 78;
+ public static final int Theme_popupMenuStyle = 60;
+ public static final int Theme_popupWindowStyle = 61;
+ public static final int Theme_radioButtonStyle = 104;
+ public static final int Theme_ratingBarStyle = 105;
+ public static final int Theme_searchViewStyle = 67;
+ public static final int Theme_selectableItemBackground = 52;
+ public static final int Theme_selectableItemBackgroundBorderless = 53;
+ public static final int Theme_spinnerDropDownItemStyle = 47;
+ public static final int Theme_spinnerStyle = 106;
+ public static final int Theme_switchStyle = 107;
+ public static final int Theme_textAppearanceLargePopupMenu = 40;
+ public static final int Theme_textAppearanceListItem = 75;
+ public static final int Theme_textAppearanceListItemSmall = 76;
+ public static final int Theme_textAppearanceSearchResultSubtitle = 65;
+ public static final int Theme_textAppearanceSearchResultTitle = 64;
+ public static final int Theme_textAppearanceSmallPopupMenu = 41;
+ public static final int Theme_textColorAlertDialogListItem = 94;
+ public static final int Theme_textColorSearchUrl = 66;
+ public static final int Theme_toolbarNavigationButtonStyle = 59;
+ public static final int Theme_toolbarStyle = 58;
+ public static final int Theme_windowActionBar = 2;
+ public static final int Theme_windowActionBarOverlay = 4;
+ public static final int Theme_windowActionModeOverlay = 5;
+ public static final int Theme_windowFixedHeightMajor = 9;
+ public static final int Theme_windowFixedHeightMinor = 7;
+ public static final int Theme_windowFixedWidthMajor = 6;
+ public static final int Theme_windowFixedWidthMinor = 8;
+ public static final int Theme_windowMinWidthMajor = 10;
+ public static final int Theme_windowMinWidthMinor = 11;
+ public static final int Theme_windowNoTitle = 3;
+ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static final int Toolbar_android_gravity = 0;
+ public static final int Toolbar_android_minHeight = 1;
+ public static final int Toolbar_collapseContentDescription = 19;
+ public static final int Toolbar_collapseIcon = 18;
+ public static final int Toolbar_contentInsetEnd = 6;
+ public static final int Toolbar_contentInsetLeft = 7;
+ public static final int Toolbar_contentInsetRight = 8;
+ public static final int Toolbar_contentInsetStart = 5;
+ public static final int Toolbar_logo = 4;
+ public static final int Toolbar_logoDescription = 22;
+ public static final int Toolbar_maxButtonHeight = 17;
+ public static final int Toolbar_navigationContentDescription = 21;
+ public static final int Toolbar_navigationIcon = 20;
+ public static final int Toolbar_popupTheme = 9;
+ public static final int Toolbar_subtitle = 3;
+ public static final int Toolbar_subtitleTextAppearance = 11;
+ public static final int Toolbar_subtitleTextColor = 24;
+ public static final int Toolbar_title = 2;
+ public static final int Toolbar_titleMarginBottom = 16;
+ public static final int Toolbar_titleMarginEnd = 14;
+ public static final int Toolbar_titleMarginStart = 13;
+ public static final int Toolbar_titleMarginTop = 15;
+ public static final int Toolbar_titleMargins = 12;
+ public static final int Toolbar_titleTextAppearance = 10;
+ public static final int Toolbar_titleTextColor = 23;
+ public static final int[] View = { 0x01010000, 0x010100da, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3 };
+ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100e4, 0x7f0100e5 };
+ public static final int ViewBackgroundHelper_android_background = 0;
+ public static final int ViewBackgroundHelper_backgroundTint = 1;
+ public static final int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static final int ViewStubCompat_android_id = 0;
+ public static final int ViewStubCompat_android_inflatedId = 2;
+ public static final int ViewStubCompat_android_layout = 1;
+ public static final int View_android_focusable = 1;
+ public static final int View_android_theme = 0;
+ public static final int View_paddingEnd = 3;
+ public static final int View_paddingStart = 2;
+ public static final int View_theme = 4;
+ }
+}
diff --git a/android/app/build/generated/source/r/debug/com/facebook/drawee/R.java b/android/app/build/generated/source/r/debug/com/facebook/drawee/R.java
new file mode 100644
index 00000000..7f3f8afc
--- /dev/null
+++ b/android/app/build/generated/source/r/debug/com/facebook/drawee/R.java
@@ -0,0 +1,81 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package com.facebook.drawee;
+
+public final class R {
+ public static final class attr {
+ public static final int actualImageResource = 0x7f010060;
+ public static final int actualImageScaleType = 0x7f01003a;
+ public static final int actualImageUri = 0x7f01005f;
+ public static final int backgroundImage = 0x7f01003b;
+ public static final int fadeDuration = 0x7f01002f;
+ public static final int failureImage = 0x7f010035;
+ public static final int failureImageScaleType = 0x7f010036;
+ public static final int overlayImage = 0x7f01003c;
+ public static final int placeholderImage = 0x7f010031;
+ public static final int placeholderImageScaleType = 0x7f010032;
+ public static final int pressedStateOverlayImage = 0x7f01003d;
+ public static final int progressBarAutoRotateInterval = 0x7f010039;
+ public static final int progressBarImage = 0x7f010037;
+ public static final int progressBarImageScaleType = 0x7f010038;
+ public static final int retryImage = 0x7f010033;
+ public static final int retryImageScaleType = 0x7f010034;
+ public static final int roundAsCircle = 0x7f01003e;
+ public static final int roundBottomLeft = 0x7f010043;
+ public static final int roundBottomRight = 0x7f010042;
+ public static final int roundTopLeft = 0x7f010040;
+ public static final int roundTopRight = 0x7f010041;
+ public static final int roundWithOverlayColor = 0x7f010044;
+ public static final int roundedCornerRadius = 0x7f01003f;
+ public static final int roundingBorderColor = 0x7f010046;
+ public static final int roundingBorderPadding = 0x7f010047;
+ public static final int roundingBorderWidth = 0x7f010045;
+ public static final int viewAspectRatio = 0x7f010030;
+ }
+ public static final class id {
+ public static final int center = 0x7f0d001a;
+ public static final int centerCrop = 0x7f0d001b;
+ public static final int centerInside = 0x7f0d001c;
+ public static final int fitCenter = 0x7f0d001d;
+ public static final int fitEnd = 0x7f0d001e;
+ public static final int fitStart = 0x7f0d001f;
+ public static final int fitXY = 0x7f0d0020;
+ public static final int focusCrop = 0x7f0d0021;
+ public static final int none = 0x7f0d0010;
+ }
+ public static final class styleable {
+ public static final int[] GenericDraweeHierarchy = { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 };
+ public static final int GenericDraweeHierarchy_actualImageScaleType = 11;
+ public static final int GenericDraweeHierarchy_backgroundImage = 12;
+ public static final int GenericDraweeHierarchy_fadeDuration = 0;
+ public static final int GenericDraweeHierarchy_failureImage = 6;
+ public static final int GenericDraweeHierarchy_failureImageScaleType = 7;
+ public static final int GenericDraweeHierarchy_overlayImage = 13;
+ public static final int GenericDraweeHierarchy_placeholderImage = 2;
+ public static final int GenericDraweeHierarchy_placeholderImageScaleType = 3;
+ public static final int GenericDraweeHierarchy_pressedStateOverlayImage = 14;
+ public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval = 10;
+ public static final int GenericDraweeHierarchy_progressBarImage = 8;
+ public static final int GenericDraweeHierarchy_progressBarImageScaleType = 9;
+ public static final int GenericDraweeHierarchy_retryImage = 4;
+ public static final int GenericDraweeHierarchy_retryImageScaleType = 5;
+ public static final int GenericDraweeHierarchy_roundAsCircle = 15;
+ public static final int GenericDraweeHierarchy_roundBottomLeft = 20;
+ public static final int GenericDraweeHierarchy_roundBottomRight = 19;
+ public static final int GenericDraweeHierarchy_roundTopLeft = 17;
+ public static final int GenericDraweeHierarchy_roundTopRight = 18;
+ public static final int GenericDraweeHierarchy_roundWithOverlayColor = 21;
+ public static final int GenericDraweeHierarchy_roundedCornerRadius = 16;
+ public static final int GenericDraweeHierarchy_roundingBorderColor = 23;
+ public static final int GenericDraweeHierarchy_roundingBorderPadding = 24;
+ public static final int GenericDraweeHierarchy_roundingBorderWidth = 22;
+ public static final int GenericDraweeHierarchy_viewAspectRatio = 1;
+ public static final int[] SimpleDraweeView = { 0x7f01005f, 0x7f010060 };
+ public static final int SimpleDraweeView_actualImageResource = 1;
+ public static final int SimpleDraweeView_actualImageUri = 0;
+ }
+}
diff --git a/android/app/build/generated/source/r/debug/com/facebook/drawee/backends/pipeline/R.java b/android/app/build/generated/source/r/debug/com/facebook/drawee/backends/pipeline/R.java
new file mode 100644
index 00000000..a75dfe46
--- /dev/null
+++ b/android/app/build/generated/source/r/debug/com/facebook/drawee/backends/pipeline/R.java
@@ -0,0 +1,81 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package com.facebook.drawee.backends.pipeline;
+
+public final class R {
+ public static final class attr {
+ public static final int actualImageResource = 0x7f010060;
+ public static final int actualImageScaleType = 0x7f01003a;
+ public static final int actualImageUri = 0x7f01005f;
+ public static final int backgroundImage = 0x7f01003b;
+ public static final int fadeDuration = 0x7f01002f;
+ public static final int failureImage = 0x7f010035;
+ public static final int failureImageScaleType = 0x7f010036;
+ public static final int overlayImage = 0x7f01003c;
+ public static final int placeholderImage = 0x7f010031;
+ public static final int placeholderImageScaleType = 0x7f010032;
+ public static final int pressedStateOverlayImage = 0x7f01003d;
+ public static final int progressBarAutoRotateInterval = 0x7f010039;
+ public static final int progressBarImage = 0x7f010037;
+ public static final int progressBarImageScaleType = 0x7f010038;
+ public static final int retryImage = 0x7f010033;
+ public static final int retryImageScaleType = 0x7f010034;
+ public static final int roundAsCircle = 0x7f01003e;
+ public static final int roundBottomLeft = 0x7f010043;
+ public static final int roundBottomRight = 0x7f010042;
+ public static final int roundTopLeft = 0x7f010040;
+ public static final int roundTopRight = 0x7f010041;
+ public static final int roundWithOverlayColor = 0x7f010044;
+ public static final int roundedCornerRadius = 0x7f01003f;
+ public static final int roundingBorderColor = 0x7f010046;
+ public static final int roundingBorderPadding = 0x7f010047;
+ public static final int roundingBorderWidth = 0x7f010045;
+ public static final int viewAspectRatio = 0x7f010030;
+ }
+ public static final class id {
+ public static final int center = 0x7f0d001a;
+ public static final int centerCrop = 0x7f0d001b;
+ public static final int centerInside = 0x7f0d001c;
+ public static final int fitCenter = 0x7f0d001d;
+ public static final int fitEnd = 0x7f0d001e;
+ public static final int fitStart = 0x7f0d001f;
+ public static final int fitXY = 0x7f0d0020;
+ public static final int focusCrop = 0x7f0d0021;
+ public static final int none = 0x7f0d0010;
+ }
+ public static final class styleable {
+ public static final int[] GenericDraweeHierarchy = { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 };
+ public static final int GenericDraweeHierarchy_actualImageScaleType = 11;
+ public static final int GenericDraweeHierarchy_backgroundImage = 12;
+ public static final int GenericDraweeHierarchy_fadeDuration = 0;
+ public static final int GenericDraweeHierarchy_failureImage = 6;
+ public static final int GenericDraweeHierarchy_failureImageScaleType = 7;
+ public static final int GenericDraweeHierarchy_overlayImage = 13;
+ public static final int GenericDraweeHierarchy_placeholderImage = 2;
+ public static final int GenericDraweeHierarchy_placeholderImageScaleType = 3;
+ public static final int GenericDraweeHierarchy_pressedStateOverlayImage = 14;
+ public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval = 10;
+ public static final int GenericDraweeHierarchy_progressBarImage = 8;
+ public static final int GenericDraweeHierarchy_progressBarImageScaleType = 9;
+ public static final int GenericDraweeHierarchy_retryImage = 4;
+ public static final int GenericDraweeHierarchy_retryImageScaleType = 5;
+ public static final int GenericDraweeHierarchy_roundAsCircle = 15;
+ public static final int GenericDraweeHierarchy_roundBottomLeft = 20;
+ public static final int GenericDraweeHierarchy_roundBottomRight = 19;
+ public static final int GenericDraweeHierarchy_roundTopLeft = 17;
+ public static final int GenericDraweeHierarchy_roundTopRight = 18;
+ public static final int GenericDraweeHierarchy_roundWithOverlayColor = 21;
+ public static final int GenericDraweeHierarchy_roundedCornerRadius = 16;
+ public static final int GenericDraweeHierarchy_roundingBorderColor = 23;
+ public static final int GenericDraweeHierarchy_roundingBorderPadding = 24;
+ public static final int GenericDraweeHierarchy_roundingBorderWidth = 22;
+ public static final int GenericDraweeHierarchy_viewAspectRatio = 1;
+ public static final int[] SimpleDraweeView = { 0x7f01005f, 0x7f010060 };
+ public static final int SimpleDraweeView_actualImageResource = 1;
+ public static final int SimpleDraweeView_actualImageUri = 0;
+ }
+}
diff --git a/android/app/build/generated/source/r/debug/com/facebook/fbui/textlayoutbuilder/R.java b/android/app/build/generated/source/r/debug/com/facebook/fbui/textlayoutbuilder/R.java
new file mode 100644
index 00000000..91125cd9
--- /dev/null
+++ b/android/app/build/generated/source/r/debug/com/facebook/fbui/textlayoutbuilder/R.java
@@ -0,0 +1,32 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package com.facebook.fbui.textlayoutbuilder;
+
+public final class R {
+ public static final class styleable {
+ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010024 };
+ public static final int TextAppearance_android_shadowColor = 4;
+ public static final int TextAppearance_android_shadowDx = 5;
+ public static final int TextAppearance_android_shadowDy = 6;
+ public static final int TextAppearance_android_shadowRadius = 7;
+ public static final int TextAppearance_android_textColor = 3;
+ public static final int TextAppearance_android_textSize = 0;
+ public static final int TextAppearance_android_textStyle = 2;
+ public static final int[] TextStyle = { 0x01010034, 0x01010095, 0x01010097, 0x01010098, 0x010100ab, 0x01010153, 0x0101015d, 0x01010161, 0x01010162, 0x01010163, 0x01010164 };
+ public static final int TextStyle_android_ellipsize = 4;
+ public static final int TextStyle_android_maxLines = 5;
+ public static final int TextStyle_android_shadowColor = 7;
+ public static final int TextStyle_android_shadowDx = 8;
+ public static final int TextStyle_android_shadowDy = 9;
+ public static final int TextStyle_android_shadowRadius = 10;
+ public static final int TextStyle_android_singleLine = 6;
+ public static final int TextStyle_android_textAppearance = 0;
+ public static final int TextStyle_android_textColor = 3;
+ public static final int TextStyle_android_textSize = 1;
+ public static final int TextStyle_android_textStyle = 2;
+ }
+}
diff --git a/android/app/build/generated/source/r/debug/com/facebook/react/R.java b/android/app/build/generated/source/r/debug/com/facebook/react/R.java
new file mode 100644
index 00000000..64c186b5
--- /dev/null
+++ b/android/app/build/generated/source/r/debug/com/facebook/react/R.java
@@ -0,0 +1,1375 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package com.facebook.react;
+
+public final class R {
+ public static final class anim {
+ public static final int abc_fade_in = 0x7f050000;
+ public static final int abc_fade_out = 0x7f050001;
+ public static final int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static final int abc_popup_enter = 0x7f050003;
+ public static final int abc_popup_exit = 0x7f050004;
+ public static final int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static final int abc_slide_in_bottom = 0x7f050006;
+ public static final int abc_slide_in_top = 0x7f050007;
+ public static final int abc_slide_out_bottom = 0x7f050008;
+ public static final int abc_slide_out_top = 0x7f050009;
+ public static final int catalyst_fade_in = 0x7f05000a;
+ public static final int catalyst_fade_out = 0x7f05000b;
+ public static final int catalyst_push_up_in = 0x7f05000c;
+ public static final int catalyst_push_up_out = 0x7f05000d;
+ public static final int catalyst_slide_down = 0x7f05000e;
+ public static final int catalyst_slide_up = 0x7f05000f;
+ }
+ public static final class attr {
+ public static final int actionBarDivider = 0x7f01007d;
+ public static final int actionBarItemBackground = 0x7f01007e;
+ public static final int actionBarPopupTheme = 0x7f010077;
+ public static final int actionBarSize = 0x7f01007c;
+ public static final int actionBarSplitStyle = 0x7f010079;
+ public static final int actionBarStyle = 0x7f010078;
+ public static final int actionBarTabBarStyle = 0x7f010073;
+ public static final int actionBarTabStyle = 0x7f010072;
+ public static final int actionBarTabTextStyle = 0x7f010074;
+ public static final int actionBarTheme = 0x7f01007a;
+ public static final int actionBarWidgetTheme = 0x7f01007b;
+ public static final int actionButtonStyle = 0x7f010097;
+ public static final int actionDropDownStyle = 0x7f010093;
+ public static final int actionLayout = 0x7f01004c;
+ public static final int actionMenuTextAppearance = 0x7f01007f;
+ public static final int actionMenuTextColor = 0x7f010080;
+ public static final int actionModeBackground = 0x7f010083;
+ public static final int actionModeCloseButtonStyle = 0x7f010082;
+ public static final int actionModeCloseDrawable = 0x7f010085;
+ public static final int actionModeCopyDrawable = 0x7f010087;
+ public static final int actionModeCutDrawable = 0x7f010086;
+ public static final int actionModeFindDrawable = 0x7f01008b;
+ public static final int actionModePasteDrawable = 0x7f010088;
+ public static final int actionModePopupWindowStyle = 0x7f01008d;
+ public static final int actionModeSelectAllDrawable = 0x7f010089;
+ public static final int actionModeShareDrawable = 0x7f01008a;
+ public static final int actionModeSplitBackground = 0x7f010084;
+ public static final int actionModeStyle = 0x7f010081;
+ public static final int actionModeWebSearchDrawable = 0x7f01008c;
+ public static final int actionOverflowButtonStyle = 0x7f010075;
+ public static final int actionOverflowMenuStyle = 0x7f010076;
+ public static final int actionProviderClass = 0x7f01004e;
+ public static final int actionViewClass = 0x7f01004d;
+ public static final int activityChooserViewStyle = 0x7f01009f;
+ public static final int actualImageResource = 0x7f010060;
+ public static final int actualImageScaleType = 0x7f01003a;
+ public static final int actualImageUri = 0x7f01005f;
+ public static final int alertDialogButtonGroupStyle = 0x7f0100c1;
+ public static final int alertDialogCenterButtons = 0x7f0100c2;
+ public static final int alertDialogStyle = 0x7f0100c0;
+ public static final int alertDialogTheme = 0x7f0100c3;
+ public static final int arrowHeadLength = 0x7f01002b;
+ public static final int arrowShaftLength = 0x7f01002c;
+ public static final int autoCompleteTextViewStyle = 0x7f0100c8;
+ public static final int background = 0x7f01000c;
+ public static final int backgroundImage = 0x7f01003b;
+ public static final int backgroundSplit = 0x7f01000e;
+ public static final int backgroundStacked = 0x7f01000d;
+ public static final int backgroundTint = 0x7f0100e4;
+ public static final int backgroundTintMode = 0x7f0100e5;
+ public static final int barLength = 0x7f01002d;
+ public static final int borderlessButtonStyle = 0x7f01009c;
+ public static final int buttonBarButtonStyle = 0x7f010099;
+ public static final int buttonBarNegativeButtonStyle = 0x7f0100c6;
+ public static final int buttonBarNeutralButtonStyle = 0x7f0100c7;
+ public static final int buttonBarPositiveButtonStyle = 0x7f0100c5;
+ public static final int buttonBarStyle = 0x7f010098;
+ public static final int buttonPanelSideLayout = 0x7f01001f;
+ public static final int buttonStyle = 0x7f0100c9;
+ public static final int buttonStyleSmall = 0x7f0100ca;
+ public static final int buttonTint = 0x7f010025;
+ public static final int buttonTintMode = 0x7f010026;
+ public static final int checkboxStyle = 0x7f0100cb;
+ public static final int checkedTextViewStyle = 0x7f0100cc;
+ public static final int closeIcon = 0x7f010056;
+ public static final int closeItemLayout = 0x7f01001c;
+ public static final int collapseContentDescription = 0x7f0100db;
+ public static final int collapseIcon = 0x7f0100da;
+ public static final int color = 0x7f010027;
+ public static final int colorAccent = 0x7f0100b9;
+ public static final int colorButtonNormal = 0x7f0100bd;
+ public static final int colorControlActivated = 0x7f0100bb;
+ public static final int colorControlHighlight = 0x7f0100bc;
+ public static final int colorControlNormal = 0x7f0100ba;
+ public static final int colorPrimary = 0x7f0100b7;
+ public static final int colorPrimaryDark = 0x7f0100b8;
+ public static final int colorSwitchThumbNormal = 0x7f0100be;
+ public static final int commitIcon = 0x7f01005b;
+ public static final int contentInsetEnd = 0x7f010017;
+ public static final int contentInsetLeft = 0x7f010018;
+ public static final int contentInsetRight = 0x7f010019;
+ public static final int contentInsetStart = 0x7f010016;
+ public static final int controlBackground = 0x7f0100bf;
+ public static final int customNavigationLayout = 0x7f01000f;
+ public static final int defaultQueryHint = 0x7f010055;
+ public static final int dialogPreferredPadding = 0x7f010091;
+ public static final int dialogTheme = 0x7f010090;
+ public static final int displayOptions = 0x7f010005;
+ public static final int divider = 0x7f01000b;
+ public static final int dividerHorizontal = 0x7f01009e;
+ public static final int dividerPadding = 0x7f01004a;
+ public static final int dividerVertical = 0x7f01009d;
+ public static final int drawableSize = 0x7f010029;
+ public static final int drawerArrowStyle = 0x7f010000;
+ public static final int dropDownListViewStyle = 0x7f0100af;
+ public static final int dropdownListPreferredItemHeight = 0x7f010094;
+ public static final int editTextBackground = 0x7f0100a5;
+ public static final int editTextColor = 0x7f0100a4;
+ public static final int editTextStyle = 0x7f0100cd;
+ public static final int elevation = 0x7f01001a;
+ public static final int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static final int fadeDuration = 0x7f01002f;
+ public static final int failureImage = 0x7f010035;
+ public static final int failureImageScaleType = 0x7f010036;
+ public static final int gapBetweenBars = 0x7f01002a;
+ public static final int goIcon = 0x7f010057;
+ public static final int height = 0x7f010001;
+ public static final int hideOnContentScroll = 0x7f010015;
+ public static final int homeAsUpIndicator = 0x7f010096;
+ public static final int homeLayout = 0x7f010010;
+ public static final int icon = 0x7f010009;
+ public static final int iconifiedByDefault = 0x7f010053;
+ public static final int indeterminateProgressStyle = 0x7f010012;
+ public static final int initialActivityCount = 0x7f01001d;
+ public static final int isLightTheme = 0x7f010002;
+ public static final int itemPadding = 0x7f010014;
+ public static final int layout = 0x7f010052;
+ public static final int listChoiceBackgroundIndicator = 0x7f0100b6;
+ public static final int listDividerAlertDialog = 0x7f010092;
+ public static final int listItemLayout = 0x7f010023;
+ public static final int listLayout = 0x7f010020;
+ public static final int listPopupWindowStyle = 0x7f0100b0;
+ public static final int listPreferredItemHeight = 0x7f0100aa;
+ public static final int listPreferredItemHeightLarge = 0x7f0100ac;
+ public static final int listPreferredItemHeightSmall = 0x7f0100ab;
+ public static final int listPreferredItemPaddingLeft = 0x7f0100ad;
+ public static final int listPreferredItemPaddingRight = 0x7f0100ae;
+ public static final int logo = 0x7f01000a;
+ public static final int logoDescription = 0x7f0100de;
+ public static final int maxButtonHeight = 0x7f0100d9;
+ public static final int measureWithLargestChild = 0x7f010048;
+ public static final int multiChoiceItemLayout = 0x7f010021;
+ public static final int navigationContentDescription = 0x7f0100dd;
+ public static final int navigationIcon = 0x7f0100dc;
+ public static final int navigationMode = 0x7f010004;
+ public static final int overlapAnchor = 0x7f010050;
+ public static final int overlayImage = 0x7f01003c;
+ public static final int paddingEnd = 0x7f0100e2;
+ public static final int paddingStart = 0x7f0100e1;
+ public static final int panelBackground = 0x7f0100b3;
+ public static final int panelMenuListTheme = 0x7f0100b5;
+ public static final int panelMenuListWidth = 0x7f0100b4;
+ public static final int placeholderImage = 0x7f010031;
+ public static final int placeholderImageScaleType = 0x7f010032;
+ public static final int popupMenuStyle = 0x7f0100a2;
+ public static final int popupTheme = 0x7f01001b;
+ public static final int popupWindowStyle = 0x7f0100a3;
+ public static final int preserveIconSpacing = 0x7f01004f;
+ public static final int pressedStateOverlayImage = 0x7f01003d;
+ public static final int progressBarAutoRotateInterval = 0x7f010039;
+ public static final int progressBarImage = 0x7f010037;
+ public static final int progressBarImageScaleType = 0x7f010038;
+ public static final int progressBarPadding = 0x7f010013;
+ public static final int progressBarStyle = 0x7f010011;
+ public static final int queryBackground = 0x7f01005d;
+ public static final int queryHint = 0x7f010054;
+ public static final int radioButtonStyle = 0x7f0100ce;
+ public static final int ratingBarStyle = 0x7f0100cf;
+ public static final int retryImage = 0x7f010033;
+ public static final int retryImageScaleType = 0x7f010034;
+ public static final int roundAsCircle = 0x7f01003e;
+ public static final int roundBottomLeft = 0x7f010043;
+ public static final int roundBottomRight = 0x7f010042;
+ public static final int roundTopLeft = 0x7f010040;
+ public static final int roundTopRight = 0x7f010041;
+ public static final int roundWithOverlayColor = 0x7f010044;
+ public static final int roundedCornerRadius = 0x7f01003f;
+ public static final int roundingBorderColor = 0x7f010046;
+ public static final int roundingBorderPadding = 0x7f010047;
+ public static final int roundingBorderWidth = 0x7f010045;
+ public static final int searchHintIcon = 0x7f010059;
+ public static final int searchIcon = 0x7f010058;
+ public static final int searchViewStyle = 0x7f0100a9;
+ public static final int selectableItemBackground = 0x7f01009a;
+ public static final int selectableItemBackgroundBorderless = 0x7f01009b;
+ public static final int showAsAction = 0x7f01004b;
+ public static final int showDividers = 0x7f010049;
+ public static final int showText = 0x7f010067;
+ public static final int singleChoiceItemLayout = 0x7f010022;
+ public static final int spinBars = 0x7f010028;
+ public static final int spinnerDropDownItemStyle = 0x7f010095;
+ public static final int spinnerStyle = 0x7f0100d0;
+ public static final int splitTrack = 0x7f010066;
+ public static final int state_above_anchor = 0x7f010051;
+ public static final int submitBackground = 0x7f01005e;
+ public static final int subtitle = 0x7f010006;
+ public static final int subtitleTextAppearance = 0x7f0100d3;
+ public static final int subtitleTextColor = 0x7f0100e0;
+ public static final int subtitleTextStyle = 0x7f010008;
+ public static final int suggestionRowLayout = 0x7f01005c;
+ public static final int switchMinWidth = 0x7f010064;
+ public static final int switchPadding = 0x7f010065;
+ public static final int switchStyle = 0x7f0100d1;
+ public static final int switchTextAppearance = 0x7f010063;
+ public static final int textAllCaps = 0x7f010024;
+ public static final int textAppearanceLargePopupMenu = 0x7f01008e;
+ public static final int textAppearanceListItem = 0x7f0100b1;
+ public static final int textAppearanceListItemSmall = 0x7f0100b2;
+ public static final int textAppearanceSearchResultSubtitle = 0x7f0100a7;
+ public static final int textAppearanceSearchResultTitle = 0x7f0100a6;
+ public static final int textAppearanceSmallPopupMenu = 0x7f01008f;
+ public static final int textColorAlertDialogListItem = 0x7f0100c4;
+ public static final int textColorSearchUrl = 0x7f0100a8;
+ public static final int theme = 0x7f0100e3;
+ public static final int thickness = 0x7f01002e;
+ public static final int thumbTextPadding = 0x7f010062;
+ public static final int title = 0x7f010003;
+ public static final int titleMarginBottom = 0x7f0100d8;
+ public static final int titleMarginEnd = 0x7f0100d6;
+ public static final int titleMarginStart = 0x7f0100d5;
+ public static final int titleMarginTop = 0x7f0100d7;
+ public static final int titleMargins = 0x7f0100d4;
+ public static final int titleTextAppearance = 0x7f0100d2;
+ public static final int titleTextColor = 0x7f0100df;
+ public static final int titleTextStyle = 0x7f010007;
+ public static final int toolbarNavigationButtonStyle = 0x7f0100a1;
+ public static final int toolbarStyle = 0x7f0100a0;
+ public static final int track = 0x7f010061;
+ public static final int viewAspectRatio = 0x7f010030;
+ public static final int voiceIcon = 0x7f01005a;
+ public static final int windowActionBar = 0x7f010068;
+ public static final int windowActionBarOverlay = 0x7f01006a;
+ public static final int windowActionModeOverlay = 0x7f01006b;
+ public static final int windowFixedHeightMajor = 0x7f01006f;
+ public static final int windowFixedHeightMinor = 0x7f01006d;
+ public static final int windowFixedWidthMajor = 0x7f01006c;
+ public static final int windowFixedWidthMinor = 0x7f01006e;
+ public static final int windowMinWidthMajor = 0x7f010070;
+ public static final int windowMinWidthMinor = 0x7f010071;
+ public static final int windowNoTitle = 0x7f010069;
+ }
+ public static final class bool {
+ public static final int abc_action_bar_embed_tabs = 0x7f0a0002;
+ public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f0a0000;
+ public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f0a0003;
+ public static final int abc_config_actionMenuItemAllCaps = 0x7f0a0004;
+ public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f0a0001;
+ public static final int abc_config_closeDialogWhenTouchOutside = 0x7f0a0005;
+ public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f0a0006;
+ }
+ public static final class color {
+ public static final int abc_background_cache_hint_selector_material_dark = 0x7f0c003b;
+ public static final int abc_background_cache_hint_selector_material_light = 0x7f0c003c;
+ public static final int abc_color_highlight_material = 0x7f0c003d;
+ public static final int abc_input_method_navigation_guard = 0x7f0c0000;
+ public static final int abc_primary_text_disable_only_material_dark = 0x7f0c003e;
+ public static final int abc_primary_text_disable_only_material_light = 0x7f0c003f;
+ public static final int abc_primary_text_material_dark = 0x7f0c0040;
+ public static final int abc_primary_text_material_light = 0x7f0c0041;
+ public static final int abc_search_url_text = 0x7f0c0042;
+ public static final int abc_search_url_text_normal = 0x7f0c0001;
+ public static final int abc_search_url_text_pressed = 0x7f0c0002;
+ public static final int abc_search_url_text_selected = 0x7f0c0003;
+ public static final int abc_secondary_text_material_dark = 0x7f0c0043;
+ public static final int abc_secondary_text_material_light = 0x7f0c0044;
+ public static final int accent_material_dark = 0x7f0c0004;
+ public static final int accent_material_light = 0x7f0c0005;
+ public static final int background_floating_material_dark = 0x7f0c0006;
+ public static final int background_floating_material_light = 0x7f0c0007;
+ public static final int background_material_dark = 0x7f0c0008;
+ public static final int background_material_light = 0x7f0c0009;
+ public static final int bright_foreground_disabled_material_dark = 0x7f0c000a;
+ public static final int bright_foreground_disabled_material_light = 0x7f0c000b;
+ public static final int bright_foreground_inverse_material_dark = 0x7f0c000c;
+ public static final int bright_foreground_inverse_material_light = 0x7f0c000d;
+ public static final int bright_foreground_material_dark = 0x7f0c000e;
+ public static final int bright_foreground_material_light = 0x7f0c000f;
+ public static final int button_material_dark = 0x7f0c0010;
+ public static final int button_material_light = 0x7f0c0011;
+ public static final int catalyst_redbox_background = 0x7f0c0012;
+ public static final int dim_foreground_disabled_material_dark = 0x7f0c0013;
+ public static final int dim_foreground_disabled_material_light = 0x7f0c0014;
+ public static final int dim_foreground_material_dark = 0x7f0c0015;
+ public static final int dim_foreground_material_light = 0x7f0c0016;
+ public static final int foreground_material_dark = 0x7f0c0017;
+ public static final int foreground_material_light = 0x7f0c0018;
+ public static final int highlighted_text_material_dark = 0x7f0c0019;
+ public static final int highlighted_text_material_light = 0x7f0c001a;
+ public static final int hint_foreground_material_dark = 0x7f0c001b;
+ public static final int hint_foreground_material_light = 0x7f0c001c;
+ public static final int material_blue_grey_800 = 0x7f0c001d;
+ public static final int material_blue_grey_900 = 0x7f0c001e;
+ public static final int material_blue_grey_950 = 0x7f0c001f;
+ public static final int material_deep_teal_200 = 0x7f0c0020;
+ public static final int material_deep_teal_500 = 0x7f0c0021;
+ public static final int material_grey_100 = 0x7f0c0022;
+ public static final int material_grey_300 = 0x7f0c0023;
+ public static final int material_grey_50 = 0x7f0c0024;
+ public static final int material_grey_600 = 0x7f0c0025;
+ public static final int material_grey_800 = 0x7f0c0026;
+ public static final int material_grey_850 = 0x7f0c0027;
+ public static final int material_grey_900 = 0x7f0c0028;
+ public static final int primary_dark_material_dark = 0x7f0c0029;
+ public static final int primary_dark_material_light = 0x7f0c002a;
+ public static final int primary_material_dark = 0x7f0c002b;
+ public static final int primary_material_light = 0x7f0c002c;
+ public static final int primary_text_default_material_dark = 0x7f0c002d;
+ public static final int primary_text_default_material_light = 0x7f0c002e;
+ public static final int primary_text_disabled_material_dark = 0x7f0c002f;
+ public static final int primary_text_disabled_material_light = 0x7f0c0030;
+ public static final int ripple_material_dark = 0x7f0c0031;
+ public static final int ripple_material_light = 0x7f0c0032;
+ public static final int secondary_text_default_material_dark = 0x7f0c0033;
+ public static final int secondary_text_default_material_light = 0x7f0c0034;
+ public static final int secondary_text_disabled_material_dark = 0x7f0c0035;
+ public static final int secondary_text_disabled_material_light = 0x7f0c0036;
+ public static final int switch_thumb_disabled_material_dark = 0x7f0c0037;
+ public static final int switch_thumb_disabled_material_light = 0x7f0c0038;
+ public static final int switch_thumb_material_dark = 0x7f0c0045;
+ public static final int switch_thumb_material_light = 0x7f0c0046;
+ public static final int switch_thumb_normal_material_dark = 0x7f0c0039;
+ public static final int switch_thumb_normal_material_light = 0x7f0c003a;
+ }
+ public static final class dimen {
+ public static final int abc_action_bar_content_inset_material = 0x7f08000b;
+ public static final int abc_action_bar_default_height_material = 0x7f080001;
+ public static final int abc_action_bar_default_padding_end_material = 0x7f08000c;
+ public static final int abc_action_bar_default_padding_start_material = 0x7f08000d;
+ public static final int abc_action_bar_icon_vertical_padding_material = 0x7f08000f;
+ public static final int abc_action_bar_overflow_padding_end_material = 0x7f080010;
+ public static final int abc_action_bar_overflow_padding_start_material = 0x7f080011;
+ public static final int abc_action_bar_progress_bar_size = 0x7f080002;
+ public static final int abc_action_bar_stacked_max_height = 0x7f080012;
+ public static final int abc_action_bar_stacked_tab_max_width = 0x7f080013;
+ public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f080014;
+ public static final int abc_action_bar_subtitle_top_margin_material = 0x7f080015;
+ public static final int abc_action_button_min_height_material = 0x7f080016;
+ public static final int abc_action_button_min_width_material = 0x7f080017;
+ public static final int abc_action_button_min_width_overflow_material = 0x7f080018;
+ public static final int abc_alert_dialog_button_bar_height = 0x7f080000;
+ public static final int abc_button_inset_horizontal_material = 0x7f080019;
+ public static final int abc_button_inset_vertical_material = 0x7f08001a;
+ public static final int abc_button_padding_horizontal_material = 0x7f08001b;
+ public static final int abc_button_padding_vertical_material = 0x7f08001c;
+ public static final int abc_config_prefDialogWidth = 0x7f080005;
+ public static final int abc_control_corner_material = 0x7f08001d;
+ public static final int abc_control_inset_material = 0x7f08001e;
+ public static final int abc_control_padding_material = 0x7f08001f;
+ public static final int abc_dialog_list_padding_vertical_material = 0x7f080020;
+ public static final int abc_dialog_min_width_major = 0x7f080021;
+ public static final int abc_dialog_min_width_minor = 0x7f080022;
+ public static final int abc_dialog_padding_material = 0x7f080023;
+ public static final int abc_dialog_padding_top_material = 0x7f080024;
+ public static final int abc_disabled_alpha_material_dark = 0x7f080025;
+ public static final int abc_disabled_alpha_material_light = 0x7f080026;
+ public static final int abc_dropdownitem_icon_width = 0x7f080027;
+ public static final int abc_dropdownitem_text_padding_left = 0x7f080028;
+ public static final int abc_dropdownitem_text_padding_right = 0x7f080029;
+ public static final int abc_edit_text_inset_bottom_material = 0x7f08002a;
+ public static final int abc_edit_text_inset_horizontal_material = 0x7f08002b;
+ public static final int abc_edit_text_inset_top_material = 0x7f08002c;
+ public static final int abc_floating_window_z = 0x7f08002d;
+ public static final int abc_list_item_padding_horizontal_material = 0x7f08002e;
+ public static final int abc_panel_menu_list_width = 0x7f08002f;
+ public static final int abc_search_view_preferred_width = 0x7f080030;
+ public static final int abc_search_view_text_min_width = 0x7f080006;
+ public static final int abc_switch_padding = 0x7f08000e;
+ public static final int abc_text_size_body_1_material = 0x7f080031;
+ public static final int abc_text_size_body_2_material = 0x7f080032;
+ public static final int abc_text_size_button_material = 0x7f080033;
+ public static final int abc_text_size_caption_material = 0x7f080034;
+ public static final int abc_text_size_display_1_material = 0x7f080035;
+ public static final int abc_text_size_display_2_material = 0x7f080036;
+ public static final int abc_text_size_display_3_material = 0x7f080037;
+ public static final int abc_text_size_display_4_material = 0x7f080038;
+ public static final int abc_text_size_headline_material = 0x7f080039;
+ public static final int abc_text_size_large_material = 0x7f08003a;
+ public static final int abc_text_size_medium_material = 0x7f08003b;
+ public static final int abc_text_size_menu_material = 0x7f08003c;
+ public static final int abc_text_size_small_material = 0x7f08003d;
+ public static final int abc_text_size_subhead_material = 0x7f08003e;
+ public static final int abc_text_size_subtitle_material_toolbar = 0x7f080003;
+ public static final int abc_text_size_title_material = 0x7f08003f;
+ public static final int abc_text_size_title_material_toolbar = 0x7f080004;
+ public static final int dialog_fixed_height_major = 0x7f080007;
+ public static final int dialog_fixed_height_minor = 0x7f080008;
+ public static final int dialog_fixed_width_major = 0x7f080009;
+ public static final int dialog_fixed_width_minor = 0x7f08000a;
+ public static final int disabled_alpha_material_dark = 0x7f080040;
+ public static final int disabled_alpha_material_light = 0x7f080041;
+ public static final int highlight_alpha_material_colored = 0x7f080042;
+ public static final int highlight_alpha_material_dark = 0x7f080043;
+ public static final int highlight_alpha_material_light = 0x7f080044;
+ public static final int notification_large_icon_height = 0x7f080045;
+ public static final int notification_large_icon_width = 0x7f080046;
+ public static final int notification_subtext_size = 0x7f080047;
+ }
+ public static final class drawable {
+ public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static final int abc_action_bar_item_background_material = 0x7f020001;
+ public static final int abc_btn_borderless_material = 0x7f020002;
+ public static final int abc_btn_check_material = 0x7f020003;
+ public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
+ public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
+ public static final int abc_btn_colored_material = 0x7f020006;
+ public static final int abc_btn_default_mtrl_shape = 0x7f020007;
+ public static final int abc_btn_radio_material = 0x7f020008;
+ public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
+ public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
+ public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
+ public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
+ public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
+ public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
+ public static final int abc_cab_background_internal_bg = 0x7f02000f;
+ public static final int abc_cab_background_top_material = 0x7f020010;
+ public static final int abc_cab_background_top_mtrl_alpha = 0x7f020011;
+ public static final int abc_control_background_material = 0x7f020012;
+ public static final int abc_dialog_material_background_dark = 0x7f020013;
+ public static final int abc_dialog_material_background_light = 0x7f020014;
+ public static final int abc_edit_text_material = 0x7f020015;
+ public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
+ public static final int abc_ic_clear_mtrl_alpha = 0x7f020017;
+ public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
+ public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
+ public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
+ public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
+ public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
+ public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
+ public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
+ public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
+ public static final int abc_ic_search_api_mtrl_alpha = 0x7f020020;
+ public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020021;
+ public static final int abc_item_background_holo_dark = 0x7f020022;
+ public static final int abc_item_background_holo_light = 0x7f020023;
+ public static final int abc_list_divider_mtrl_alpha = 0x7f020024;
+ public static final int abc_list_focused_holo = 0x7f020025;
+ public static final int abc_list_longpressed_holo = 0x7f020026;
+ public static final int abc_list_pressed_holo_dark = 0x7f020027;
+ public static final int abc_list_pressed_holo_light = 0x7f020028;
+ public static final int abc_list_selector_background_transition_holo_dark = 0x7f020029;
+ public static final int abc_list_selector_background_transition_holo_light = 0x7f02002a;
+ public static final int abc_list_selector_disabled_holo_dark = 0x7f02002b;
+ public static final int abc_list_selector_disabled_holo_light = 0x7f02002c;
+ public static final int abc_list_selector_holo_dark = 0x7f02002d;
+ public static final int abc_list_selector_holo_light = 0x7f02002e;
+ public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f02002f;
+ public static final int abc_popup_background_mtrl_mult = 0x7f020030;
+ public static final int abc_ratingbar_full_material = 0x7f020031;
+ public static final int abc_spinner_mtrl_am_alpha = 0x7f020032;
+ public static final int abc_spinner_textfield_background_material = 0x7f020033;
+ public static final int abc_switch_thumb_material = 0x7f020034;
+ public static final int abc_switch_track_mtrl_alpha = 0x7f020035;
+ public static final int abc_tab_indicator_material = 0x7f020036;
+ public static final int abc_tab_indicator_mtrl_alpha = 0x7f020037;
+ public static final int abc_text_cursor_material = 0x7f020038;
+ public static final int abc_textfield_activated_mtrl_alpha = 0x7f020039;
+ public static final int abc_textfield_default_mtrl_alpha = 0x7f02003a;
+ public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f02003b;
+ public static final int abc_textfield_search_default_mtrl_alpha = 0x7f02003c;
+ public static final int abc_textfield_search_material = 0x7f02003d;
+ public static final int notification_template_icon_bg = 0x7f02003e;
+ }
+ public static final class id {
+ public static final int action0 = 0x7f0d0058;
+ public static final int action_bar = 0x7f0d0048;
+ public static final int action_bar_activity_content = 0x7f0d0000;
+ public static final int action_bar_container = 0x7f0d0047;
+ public static final int action_bar_root = 0x7f0d0043;
+ public static final int action_bar_spinner = 0x7f0d0001;
+ public static final int action_bar_subtitle = 0x7f0d002c;
+ public static final int action_bar_title = 0x7f0d002b;
+ public static final int action_context_bar = 0x7f0d0049;
+ public static final int action_divider = 0x7f0d005c;
+ public static final int action_menu_divider = 0x7f0d0002;
+ public static final int action_menu_presenter = 0x7f0d0003;
+ public static final int action_mode_bar = 0x7f0d0045;
+ public static final int action_mode_bar_stub = 0x7f0d0044;
+ public static final int action_mode_close_button = 0x7f0d002d;
+ public static final int activity_chooser_view_content = 0x7f0d002e;
+ public static final int alertTitle = 0x7f0d0038;
+ public static final int always = 0x7f0d0025;
+ public static final int beginning = 0x7f0d0022;
+ public static final int buttonPanel = 0x7f0d003e;
+ public static final int cancel_action = 0x7f0d0059;
+ public static final int catalyst_redbox_title = 0x7f0d0067;
+ public static final int center = 0x7f0d001a;
+ public static final int centerCrop = 0x7f0d001b;
+ public static final int centerInside = 0x7f0d001c;
+ public static final int checkbox = 0x7f0d0040;
+ public static final int chronometer = 0x7f0d005f;
+ public static final int collapseActionView = 0x7f0d0026;
+ public static final int contentPanel = 0x7f0d0039;
+ public static final int custom = 0x7f0d003d;
+ public static final int customPanel = 0x7f0d003c;
+ public static final int decor_content_parent = 0x7f0d0046;
+ public static final int default_activity_button = 0x7f0d0031;
+ public static final int disableHome = 0x7f0d000e;
+ public static final int edit_query = 0x7f0d004a;
+ public static final int end = 0x7f0d0023;
+ public static final int end_padder = 0x7f0d0064;
+ public static final int expand_activities_button = 0x7f0d002f;
+ public static final int expanded_menu = 0x7f0d003f;
+ public static final int fitCenter = 0x7f0d001d;
+ public static final int fitEnd = 0x7f0d001e;
+ public static final int fitStart = 0x7f0d001f;
+ public static final int fitXY = 0x7f0d0020;
+ public static final int focusCrop = 0x7f0d0021;
+ public static final int fps_text = 0x7f0d0057;
+ public static final int home = 0x7f0d0004;
+ public static final int homeAsUp = 0x7f0d000f;
+ public static final int icon = 0x7f0d0033;
+ public static final int ifRoom = 0x7f0d0027;
+ public static final int image = 0x7f0d0030;
+ public static final int info = 0x7f0d0063;
+ public static final int line1 = 0x7f0d005d;
+ public static final int line3 = 0x7f0d0061;
+ public static final int listMode = 0x7f0d000b;
+ public static final int list_item = 0x7f0d0032;
+ public static final int media_actions = 0x7f0d005b;
+ public static final int middle = 0x7f0d0024;
+ public static final int multiply = 0x7f0d0015;
+ public static final int never = 0x7f0d0028;
+ public static final int none = 0x7f0d0010;
+ public static final int normal = 0x7f0d000c;
+ public static final int parentPanel = 0x7f0d0035;
+ public static final int progress_circular = 0x7f0d0005;
+ public static final int progress_horizontal = 0x7f0d0006;
+ public static final int radio = 0x7f0d0042;
+ public static final int react_test_id = 0x7f0d0007;
+ public static final int rn_frame_file = 0x7f0d0066;
+ public static final int rn_frame_method = 0x7f0d0065;
+ public static final int rn_redbox_copy_button = 0x7f0d006e;
+ public static final int rn_redbox_dismiss_button = 0x7f0d006c;
+ public static final int rn_redbox_line_separator = 0x7f0d0069;
+ public static final int rn_redbox_loading_indicator = 0x7f0d006a;
+ public static final int rn_redbox_reload_button = 0x7f0d006d;
+ public static final int rn_redbox_report_button = 0x7f0d006f;
+ public static final int rn_redbox_report_label = 0x7f0d006b;
+ public static final int rn_redbox_stack = 0x7f0d0068;
+ public static final int screen = 0x7f0d0016;
+ public static final int scrollView = 0x7f0d003a;
+ public static final int search_badge = 0x7f0d004c;
+ public static final int search_bar = 0x7f0d004b;
+ public static final int search_button = 0x7f0d004d;
+ public static final int search_close_btn = 0x7f0d0052;
+ public static final int search_edit_frame = 0x7f0d004e;
+ public static final int search_go_btn = 0x7f0d0054;
+ public static final int search_mag_icon = 0x7f0d004f;
+ public static final int search_plate = 0x7f0d0050;
+ public static final int search_src_text = 0x7f0d0051;
+ public static final int search_voice_btn = 0x7f0d0055;
+ public static final int select_dialog_listview = 0x7f0d0056;
+ public static final int shortcut = 0x7f0d0041;
+ public static final int showCustom = 0x7f0d0011;
+ public static final int showHome = 0x7f0d0012;
+ public static final int showTitle = 0x7f0d0013;
+ public static final int split_action_bar = 0x7f0d0008;
+ public static final int src_atop = 0x7f0d0017;
+ public static final int src_in = 0x7f0d0018;
+ public static final int src_over = 0x7f0d0019;
+ public static final int status_bar_latest_event_content = 0x7f0d005a;
+ public static final int submit_area = 0x7f0d0053;
+ public static final int tabMode = 0x7f0d000d;
+ public static final int text = 0x7f0d0062;
+ public static final int text2 = 0x7f0d0060;
+ public static final int textSpacerNoButtons = 0x7f0d003b;
+ public static final int time = 0x7f0d005e;
+ public static final int title = 0x7f0d0034;
+ public static final int title_template = 0x7f0d0037;
+ public static final int topPanel = 0x7f0d0036;
+ public static final int up = 0x7f0d0009;
+ public static final int useLogo = 0x7f0d0014;
+ public static final int view_tag_native_id = 0x7f0d000a;
+ public static final int withText = 0x7f0d0029;
+ public static final int wrap_content = 0x7f0d002a;
+ }
+ public static final class integer {
+ public static final int abc_config_activityDefaultDur = 0x7f0b0001;
+ public static final int abc_config_activityShortDur = 0x7f0b0002;
+ public static final int abc_max_action_buttons = 0x7f0b0000;
+ public static final int cancel_button_image_alpha = 0x7f0b0003;
+ public static final int status_bar_notification_info_maxnum = 0x7f0b0004;
+ }
+ public static final class layout {
+ public static final int abc_action_bar_title_item = 0x7f040000;
+ public static final int abc_action_bar_up_container = 0x7f040001;
+ public static final int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static final int abc_action_menu_item_layout = 0x7f040003;
+ public static final int abc_action_menu_layout = 0x7f040004;
+ public static final int abc_action_mode_bar = 0x7f040005;
+ public static final int abc_action_mode_close_item_material = 0x7f040006;
+ public static final int abc_activity_chooser_view = 0x7f040007;
+ public static final int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static final int abc_alert_dialog_material = 0x7f040009;
+ public static final int abc_dialog_title_material = 0x7f04000a;
+ public static final int abc_expanded_menu_layout = 0x7f04000b;
+ public static final int abc_list_menu_item_checkbox = 0x7f04000c;
+ public static final int abc_list_menu_item_icon = 0x7f04000d;
+ public static final int abc_list_menu_item_layout = 0x7f04000e;
+ public static final int abc_list_menu_item_radio = 0x7f04000f;
+ public static final int abc_popup_menu_item_layout = 0x7f040010;
+ public static final int abc_screen_content_include = 0x7f040011;
+ public static final int abc_screen_simple = 0x7f040012;
+ public static final int abc_screen_simple_overlay_action_mode = 0x7f040013;
+ public static final int abc_screen_toolbar = 0x7f040014;
+ public static final int abc_search_dropdown_item_icons_2line = 0x7f040015;
+ public static final int abc_search_view = 0x7f040016;
+ public static final int abc_select_dialog_material = 0x7f040017;
+ public static final int dev_loading_view = 0x7f040018;
+ public static final int fps_view = 0x7f040019;
+ public static final int notification_media_action = 0x7f04001a;
+ public static final int notification_media_cancel_action = 0x7f04001b;
+ public static final int notification_template_big_media = 0x7f04001c;
+ public static final int notification_template_big_media_narrow = 0x7f04001d;
+ public static final int notification_template_lines = 0x7f04001e;
+ public static final int notification_template_media = 0x7f04001f;
+ public static final int notification_template_part_chronometer = 0x7f040020;
+ public static final int notification_template_part_time = 0x7f040021;
+ public static final int redbox_item_frame = 0x7f040022;
+ public static final int redbox_item_title = 0x7f040023;
+ public static final int redbox_view = 0x7f040024;
+ public static final int select_dialog_item_material = 0x7f040025;
+ public static final int select_dialog_multichoice_material = 0x7f040026;
+ public static final int select_dialog_singlechoice_material = 0x7f040027;
+ public static final int support_simple_spinner_dropdown_item = 0x7f040028;
+ }
+ public static final class string {
+ public static final int abc_action_bar_home_description = 0x7f070000;
+ public static final int abc_action_bar_home_description_format = 0x7f070001;
+ public static final int abc_action_bar_home_subtitle_description_format = 0x7f070002;
+ public static final int abc_action_bar_up_description = 0x7f070003;
+ public static final int abc_action_menu_overflow_description = 0x7f070004;
+ public static final int abc_action_mode_done = 0x7f070005;
+ public static final int abc_activity_chooser_view_see_all = 0x7f070006;
+ public static final int abc_activitychooserview_choose_application = 0x7f070007;
+ public static final int abc_search_hint = 0x7f070008;
+ public static final int abc_searchview_description_clear = 0x7f070009;
+ public static final int abc_searchview_description_query = 0x7f07000a;
+ public static final int abc_searchview_description_search = 0x7f07000b;
+ public static final int abc_searchview_description_submit = 0x7f07000c;
+ public static final int abc_searchview_description_voice = 0x7f07000d;
+ public static final int abc_shareactionprovider_share_with = 0x7f07000e;
+ public static final int abc_shareactionprovider_share_with_application = 0x7f07000f;
+ public static final int abc_toolbar_collapse_description = 0x7f070010;
+ public static final int catalyst_copy_button = 0x7f070013;
+ public static final int catalyst_debugjs = 0x7f070014;
+ public static final int catalyst_debugjs_nuclide = 0x7f070015;
+ public static final int catalyst_debugjs_nuclide_failure = 0x7f070016;
+ public static final int catalyst_debugjs_off = 0x7f070017;
+ public static final int catalyst_dismiss_button = 0x7f070018;
+ public static final int catalyst_element_inspector = 0x7f070019;
+ public static final int catalyst_heap_capture = 0x7f07001a;
+ public static final int catalyst_hot_module_replacement = 0x7f07001b;
+ public static final int catalyst_hot_module_replacement_off = 0x7f07001c;
+ public static final int catalyst_jsload_error = 0x7f07001d;
+ public static final int catalyst_live_reload = 0x7f07001e;
+ public static final int catalyst_live_reload_off = 0x7f07001f;
+ public static final int catalyst_loading_from_url = 0x7f070020;
+ public static final int catalyst_perf_monitor = 0x7f070021;
+ public static final int catalyst_perf_monitor_off = 0x7f070022;
+ public static final int catalyst_poke_sampling_profiler = 0x7f070023;
+ public static final int catalyst_reload_button = 0x7f070024;
+ public static final int catalyst_reloadjs = 0x7f070025;
+ public static final int catalyst_remotedbg_error = 0x7f070026;
+ public static final int catalyst_remotedbg_message = 0x7f070027;
+ public static final int catalyst_report_button = 0x7f070028;
+ public static final int catalyst_settings = 0x7f070029;
+ public static final int catalyst_settings_title = 0x7f07002a;
+ public static final int status_bar_notification_info_overflow = 0x7f070011;
+ }
+ public static final class style {
+ public static final int AlertDialog_AppCompat = 0x7f09007a;
+ public static final int AlertDialog_AppCompat_Light = 0x7f09007b;
+ public static final int Animation_AppCompat_Dialog = 0x7f09007c;
+ public static final int Animation_AppCompat_DropDownUp = 0x7f09007d;
+ public static final int Animation_Catalyst_RedBox = 0x7f09007e;
+ public static final int Base_AlertDialog_AppCompat = 0x7f090080;
+ public static final int Base_AlertDialog_AppCompat_Light = 0x7f090081;
+ public static final int Base_Animation_AppCompat_Dialog = 0x7f090082;
+ public static final int Base_Animation_AppCompat_DropDownUp = 0x7f090083;
+ public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f090085;
+ public static final int Base_DialogWindowTitle_AppCompat = 0x7f090084;
+ public static final int Base_TextAppearance_AppCompat = 0x7f09002d;
+ public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f09002e;
+ public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f09002f;
+ public static final int Base_TextAppearance_AppCompat_Button = 0x7f090018;
+ public static final int Base_TextAppearance_AppCompat_Caption = 0x7f090030;
+ public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f090031;
+ public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f090032;
+ public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f090033;
+ public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f090034;
+ public static final int Base_TextAppearance_AppCompat_Headline = 0x7f090035;
+ public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f090003;
+ public static final int Base_TextAppearance_AppCompat_Large = 0x7f090036;
+ public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f090004;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f090037;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f090038;
+ public static final int Base_TextAppearance_AppCompat_Medium = 0x7f090039;
+ public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f090005;
+ public static final int Base_TextAppearance_AppCompat_Menu = 0x7f09003a;
+ public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f090086;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f09003b;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f09003c;
+ public static final int Base_TextAppearance_AppCompat_Small = 0x7f09003d;
+ public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f090006;
+ public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f09003e;
+ public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f090007;
+ public static final int Base_TextAppearance_AppCompat_Title = 0x7f09003f;
+ public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f090008;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f090040;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f090041;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f090042;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f090043;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f090044;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f090045;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f090046;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f090047;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f090076;
+ public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f090087;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f090048;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f090049;
+ public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f09004a;
+ public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f09004b;
+ public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f090088;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f09004c;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f09004d;
+ public static final int Base_ThemeOverlay_AppCompat = 0x7f090091;
+ public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f090092;
+ public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f090093;
+ public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f090094;
+ public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f090095;
+ public static final int Base_Theme_AppCompat = 0x7f09004e;
+ public static final int Base_Theme_AppCompat_CompactMenu = 0x7f090089;
+ public static final int Base_Theme_AppCompat_Dialog = 0x7f090009;
+ public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f090001;
+ public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f09008a;
+ public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f09008b;
+ public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f09008c;
+ public static final int Base_Theme_AppCompat_Light = 0x7f09004f;
+ public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f09008d;
+ public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f09000a;
+ public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f090002;
+ public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f09008e;
+ public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f09008f;
+ public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f090090;
+ public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f09000b;
+ public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f09000c;
+ public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f090014;
+ public static final int Base_V12_Widget_AppCompat_EditText = 0x7f090015;
+ public static final int Base_V21_Theme_AppCompat = 0x7f090050;
+ public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f090051;
+ public static final int Base_V21_Theme_AppCompat_Light = 0x7f090052;
+ public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f090053;
+ public static final int Base_V22_Theme_AppCompat = 0x7f090074;
+ public static final int Base_V22_Theme_AppCompat_Light = 0x7f090075;
+ public static final int Base_V23_Theme_AppCompat = 0x7f090077;
+ public static final int Base_V23_Theme_AppCompat_Light = 0x7f090078;
+ public static final int Base_V7_Theme_AppCompat = 0x7f090096;
+ public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f090097;
+ public static final int Base_V7_Theme_AppCompat_Light = 0x7f090098;
+ public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f090099;
+ public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f09009a;
+ public static final int Base_V7_Widget_AppCompat_EditText = 0x7f09009b;
+ public static final int Base_Widget_AppCompat_ActionBar = 0x7f09009c;
+ public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f09009d;
+ public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f09009e;
+ public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f090054;
+ public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f090055;
+ public static final int Base_Widget_AppCompat_ActionButton = 0x7f090056;
+ public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f090057;
+ public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f090058;
+ public static final int Base_Widget_AppCompat_ActionMode = 0x7f09009f;
+ public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0900a0;
+ public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f090016;
+ public static final int Base_Widget_AppCompat_Button = 0x7f090059;
+ public static final int Base_Widget_AppCompat_ButtonBar = 0x7f09005d;
+ public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0900a2;
+ public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f09005a;
+ public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f09005b;
+ public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0900a1;
+ public static final int Base_Widget_AppCompat_Button_Colored = 0x7f090079;
+ public static final int Base_Widget_AppCompat_Button_Small = 0x7f09005c;
+ public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f09005e;
+ public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f09005f;
+ public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0900a3;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f090000;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0900a4;
+ public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f090060;
+ public static final int Base_Widget_AppCompat_EditText = 0x7f090017;
+ public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0900a5;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0900a6;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0900a7;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f090061;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f090062;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f090063;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f090064;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f090065;
+ public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f090066;
+ public static final int Base_Widget_AppCompat_ListView = 0x7f090067;
+ public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f090068;
+ public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f090069;
+ public static final int Base_Widget_AppCompat_PopupMenu = 0x7f09006a;
+ public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f09006b;
+ public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0900a8;
+ public static final int Base_Widget_AppCompat_ProgressBar = 0x7f09000d;
+ public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f09000e;
+ public static final int Base_Widget_AppCompat_RatingBar = 0x7f09006c;
+ public static final int Base_Widget_AppCompat_SearchView = 0x7f0900a9;
+ public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0900aa;
+ public static final int Base_Widget_AppCompat_Spinner = 0x7f09006d;
+ public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f09006e;
+ public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f09006f;
+ public static final int Base_Widget_AppCompat_Toolbar = 0x7f0900ab;
+ public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f090070;
+ public static final int CalendarDatePickerDialog = 0x7f0900ac;
+ public static final int CalendarDatePickerStyle = 0x7f0900ad;
+ public static final int ClockTimePickerDialog = 0x7f0900ae;
+ public static final int ClockTimePickerStyle = 0x7f0900af;
+ public static final int DialogAnimationFade = 0x7f0900b0;
+ public static final int DialogAnimationSlide = 0x7f0900b1;
+ public static final int Platform_AppCompat = 0x7f09000f;
+ public static final int Platform_AppCompat_Light = 0x7f090010;
+ public static final int Platform_ThemeOverlay_AppCompat = 0x7f090071;
+ public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f090072;
+ public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f090073;
+ public static final int Platform_V11_AppCompat = 0x7f090011;
+ public static final int Platform_V11_AppCompat_Light = 0x7f090012;
+ public static final int Platform_V14_AppCompat = 0x7f090019;
+ public static final int Platform_V14_AppCompat_Light = 0x7f09001a;
+ public static final int Platform_Widget_AppCompat_Spinner = 0x7f090013;
+ public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f090020;
+ public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f090021;
+ public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow = 0x7f090022;
+ public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f090023;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f090024;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f090025;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f090026;
+ public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f09002c;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f090027;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f090028;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f090029;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f09002a;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f09002b;
+ public static final int SpinnerDatePickerDialog = 0x7f0900b2;
+ public static final int SpinnerDatePickerStyle = 0x7f0900b3;
+ public static final int SpinnerTimePickerDialog = 0x7f0900b4;
+ public static final int SpinnerTimePickerStyle = 0x7f0900b5;
+ public static final int TextAppearance_AppCompat = 0x7f0900b6;
+ public static final int TextAppearance_AppCompat_Body1 = 0x7f0900b7;
+ public static final int TextAppearance_AppCompat_Body2 = 0x7f0900b8;
+ public static final int TextAppearance_AppCompat_Button = 0x7f0900b9;
+ public static final int TextAppearance_AppCompat_Caption = 0x7f0900ba;
+ public static final int TextAppearance_AppCompat_Display1 = 0x7f0900bb;
+ public static final int TextAppearance_AppCompat_Display2 = 0x7f0900bc;
+ public static final int TextAppearance_AppCompat_Display3 = 0x7f0900bd;
+ public static final int TextAppearance_AppCompat_Display4 = 0x7f0900be;
+ public static final int TextAppearance_AppCompat_Headline = 0x7f0900bf;
+ public static final int TextAppearance_AppCompat_Inverse = 0x7f0900c0;
+ public static final int TextAppearance_AppCompat_Large = 0x7f0900c1;
+ public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0900c2;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0900c3;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0900c4;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0900c5;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0900c6;
+ public static final int TextAppearance_AppCompat_Medium = 0x7f0900c7;
+ public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0900c8;
+ public static final int TextAppearance_AppCompat_Menu = 0x7f0900c9;
+ public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0900ca;
+ public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0900cb;
+ public static final int TextAppearance_AppCompat_Small = 0x7f0900cc;
+ public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0900cd;
+ public static final int TextAppearance_AppCompat_Subhead = 0x7f0900ce;
+ public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0900cf;
+ public static final int TextAppearance_AppCompat_Title = 0x7f0900d0;
+ public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0900d1;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0900d2;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0900d3;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0900d4;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0900d5;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0900d6;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0900d7;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0900d8;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0900d9;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0900da;
+ public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0900db;
+ public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0900dc;
+ public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0900dd;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0900de;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0900df;
+ public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0900e0;
+ public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0900e1;
+ public static final int TextAppearance_StatusBar_EventContent = 0x7f09001b;
+ public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f09001c;
+ public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f09001d;
+ public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f09001e;
+ public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f09001f;
+ public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0900e2;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0900e3;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0900e4;
+ public static final int Theme = 0x7f0900e5;
+ public static final int ThemeOverlay_AppCompat = 0x7f0900fb;
+ public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0900fc;
+ public static final int ThemeOverlay_AppCompat_Dark = 0x7f0900fd;
+ public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0900fe;
+ public static final int ThemeOverlay_AppCompat_Light = 0x7f0900ff;
+ public static final int Theme_AppCompat = 0x7f0900e6;
+ public static final int Theme_AppCompat_CompactMenu = 0x7f0900e7;
+ public static final int Theme_AppCompat_Dialog = 0x7f0900e8;
+ public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0900eb;
+ public static final int Theme_AppCompat_Dialog_Alert = 0x7f0900e9;
+ public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0900ea;
+ public static final int Theme_AppCompat_Light = 0x7f0900ec;
+ public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0900ed;
+ public static final int Theme_AppCompat_Light_Dialog = 0x7f0900ee;
+ public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0900f1;
+ public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0900ef;
+ public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0900f0;
+ public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0900f2;
+ public static final int Theme_AppCompat_NoActionBar = 0x7f0900f3;
+ public static final int Theme_Catalyst = 0x7f0900f4;
+ public static final int Theme_Catalyst_RedBox = 0x7f0900f5;
+ public static final int Theme_FullScreenDialog = 0x7f0900f6;
+ public static final int Theme_FullScreenDialogAnimatedFade = 0x7f0900f7;
+ public static final int Theme_FullScreenDialogAnimatedSlide = 0x7f0900f8;
+ public static final int Theme_ReactNative_AppCompat_Light = 0x7f0900f9;
+ public static final int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen = 0x7f0900fa;
+ public static final int Widget_AppCompat_ActionBar = 0x7f090100;
+ public static final int Widget_AppCompat_ActionBar_Solid = 0x7f090101;
+ public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f090102;
+ public static final int Widget_AppCompat_ActionBar_TabText = 0x7f090103;
+ public static final int Widget_AppCompat_ActionBar_TabView = 0x7f090104;
+ public static final int Widget_AppCompat_ActionButton = 0x7f090105;
+ public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f090106;
+ public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f090107;
+ public static final int Widget_AppCompat_ActionMode = 0x7f090108;
+ public static final int Widget_AppCompat_ActivityChooserView = 0x7f090109;
+ public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f09010a;
+ public static final int Widget_AppCompat_Button = 0x7f09010b;
+ public static final int Widget_AppCompat_ButtonBar = 0x7f090111;
+ public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f090112;
+ public static final int Widget_AppCompat_Button_Borderless = 0x7f09010c;
+ public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f09010d;
+ public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f09010e;
+ public static final int Widget_AppCompat_Button_Colored = 0x7f09010f;
+ public static final int Widget_AppCompat_Button_Small = 0x7f090110;
+ public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f090113;
+ public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f090114;
+ public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f090115;
+ public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f090116;
+ public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f090117;
+ public static final int Widget_AppCompat_EditText = 0x7f090118;
+ public static final int Widget_AppCompat_Light_ActionBar = 0x7f090119;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f09011a;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f09011b;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f09011c;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f09011d;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f09011e;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f09011f;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f090120;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f090121;
+ public static final int Widget_AppCompat_Light_ActionButton = 0x7f090122;
+ public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f090123;
+ public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f090124;
+ public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f090125;
+ public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f090126;
+ public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f090127;
+ public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f090128;
+ public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f090129;
+ public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f09012a;
+ public static final int Widget_AppCompat_Light_PopupMenu = 0x7f09012b;
+ public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f09012c;
+ public static final int Widget_AppCompat_Light_SearchView = 0x7f09012d;
+ public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f09012e;
+ public static final int Widget_AppCompat_ListPopupWindow = 0x7f09012f;
+ public static final int Widget_AppCompat_ListView = 0x7f090130;
+ public static final int Widget_AppCompat_ListView_DropDown = 0x7f090131;
+ public static final int Widget_AppCompat_ListView_Menu = 0x7f090132;
+ public static final int Widget_AppCompat_PopupMenu = 0x7f090133;
+ public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f090134;
+ public static final int Widget_AppCompat_PopupWindow = 0x7f090135;
+ public static final int Widget_AppCompat_ProgressBar = 0x7f090136;
+ public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f090137;
+ public static final int Widget_AppCompat_RatingBar = 0x7f090138;
+ public static final int Widget_AppCompat_SearchView = 0x7f090139;
+ public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f09013a;
+ public static final int Widget_AppCompat_Spinner = 0x7f09013b;
+ public static final int Widget_AppCompat_Spinner_DropDown = 0x7f09013c;
+ public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f09013d;
+ public static final int Widget_AppCompat_Spinner_Underlined = 0x7f09013e;
+ public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f09013f;
+ public static final int Widget_AppCompat_Toolbar = 0x7f090140;
+ public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f090141;
+ public static final int redboxButton = 0x7f090142;
+ }
+ public static final class styleable {
+ public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010096 };
+ public static final int[] ActionBarLayout = { 0x010100b3 };
+ public static final int ActionBarLayout_android_layout_gravity = 0;
+ public static final int ActionBar_background = 10;
+ public static final int ActionBar_backgroundSplit = 12;
+ public static final int ActionBar_backgroundStacked = 11;
+ public static final int ActionBar_contentInsetEnd = 21;
+ public static final int ActionBar_contentInsetLeft = 22;
+ public static final int ActionBar_contentInsetRight = 23;
+ public static final int ActionBar_contentInsetStart = 20;
+ public static final int ActionBar_customNavigationLayout = 13;
+ public static final int ActionBar_displayOptions = 3;
+ public static final int ActionBar_divider = 9;
+ public static final int ActionBar_elevation = 24;
+ public static final int ActionBar_height = 0;
+ public static final int ActionBar_hideOnContentScroll = 19;
+ public static final int ActionBar_homeAsUpIndicator = 26;
+ public static final int ActionBar_homeLayout = 14;
+ public static final int ActionBar_icon = 7;
+ public static final int ActionBar_indeterminateProgressStyle = 16;
+ public static final int ActionBar_itemPadding = 18;
+ public static final int ActionBar_logo = 8;
+ public static final int ActionBar_navigationMode = 2;
+ public static final int ActionBar_popupTheme = 25;
+ public static final int ActionBar_progressBarPadding = 17;
+ public static final int ActionBar_progressBarStyle = 15;
+ public static final int ActionBar_subtitle = 4;
+ public static final int ActionBar_subtitleTextStyle = 6;
+ public static final int ActionBar_title = 1;
+ public static final int ActionBar_titleTextStyle = 5;
+ public static final int[] ActionMenuItemView = { 0x0101013f };
+ public static final int ActionMenuItemView_android_minWidth = 0;
+ public static final int[] ActionMenuView = { };
+ public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static final int ActionMode_background = 3;
+ public static final int ActionMode_backgroundSplit = 4;
+ public static final int ActionMode_closeItemLayout = 5;
+ public static final int ActionMode_height = 0;
+ public static final int ActionMode_subtitleTextStyle = 2;
+ public static final int ActionMode_titleTextStyle = 1;
+ public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static final int ActivityChooserView_initialActivityCount = 0;
+ public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static final int AlertDialog_android_layout = 0;
+ public static final int AlertDialog_buttonPanelSideLayout = 1;
+ public static final int AlertDialog_listItemLayout = 5;
+ public static final int AlertDialog_listLayout = 2;
+ public static final int AlertDialog_multiChoiceItemLayout = 3;
+ public static final int AlertDialog_singleChoiceItemLayout = 4;
+ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010024 };
+ public static final int AppCompatTextView_android_textAppearance = 0;
+ public static final int AppCompatTextView_textAllCaps = 1;
+ public static final int[] CompoundButton = { 0x01010107, 0x7f010025, 0x7f010026 };
+ public static final int CompoundButton_android_button = 0;
+ public static final int CompoundButton_buttonTint = 1;
+ public static final int CompoundButton_buttonTintMode = 2;
+ public static final int[] DrawerArrowToggle = { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e };
+ public static final int DrawerArrowToggle_arrowHeadLength = 4;
+ public static final int DrawerArrowToggle_arrowShaftLength = 5;
+ public static final int DrawerArrowToggle_barLength = 6;
+ public static final int DrawerArrowToggle_color = 0;
+ public static final int DrawerArrowToggle_drawableSize = 2;
+ public static final int DrawerArrowToggle_gapBetweenBars = 3;
+ public static final int DrawerArrowToggle_spinBars = 1;
+ public static final int DrawerArrowToggle_thickness = 7;
+ public static final int[] GenericDraweeHierarchy = { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 };
+ public static final int GenericDraweeHierarchy_actualImageScaleType = 11;
+ public static final int GenericDraweeHierarchy_backgroundImage = 12;
+ public static final int GenericDraweeHierarchy_fadeDuration = 0;
+ public static final int GenericDraweeHierarchy_failureImage = 6;
+ public static final int GenericDraweeHierarchy_failureImageScaleType = 7;
+ public static final int GenericDraweeHierarchy_overlayImage = 13;
+ public static final int GenericDraweeHierarchy_placeholderImage = 2;
+ public static final int GenericDraweeHierarchy_placeholderImageScaleType = 3;
+ public static final int GenericDraweeHierarchy_pressedStateOverlayImage = 14;
+ public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval = 10;
+ public static final int GenericDraweeHierarchy_progressBarImage = 8;
+ public static final int GenericDraweeHierarchy_progressBarImageScaleType = 9;
+ public static final int GenericDraweeHierarchy_retryImage = 4;
+ public static final int GenericDraweeHierarchy_retryImageScaleType = 5;
+ public static final int GenericDraweeHierarchy_roundAsCircle = 15;
+ public static final int GenericDraweeHierarchy_roundBottomLeft = 20;
+ public static final int GenericDraweeHierarchy_roundBottomRight = 19;
+ public static final int GenericDraweeHierarchy_roundTopLeft = 17;
+ public static final int GenericDraweeHierarchy_roundTopRight = 18;
+ public static final int GenericDraweeHierarchy_roundWithOverlayColor = 21;
+ public static final int GenericDraweeHierarchy_roundedCornerRadius = 16;
+ public static final int GenericDraweeHierarchy_roundingBorderColor = 23;
+ public static final int GenericDraweeHierarchy_roundingBorderPadding = 24;
+ public static final int GenericDraweeHierarchy_roundingBorderWidth = 22;
+ public static final int GenericDraweeHierarchy_viewAspectRatio = 1;
+ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010048, 0x7f010049, 0x7f01004a };
+ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static final int LinearLayoutCompat_android_baselineAligned = 2;
+ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static final int LinearLayoutCompat_android_gravity = 0;
+ public static final int LinearLayoutCompat_android_orientation = 1;
+ public static final int LinearLayoutCompat_android_weightSum = 4;
+ public static final int LinearLayoutCompat_divider = 5;
+ public static final int LinearLayoutCompat_dividerPadding = 8;
+ public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static final int LinearLayoutCompat_showDividers = 7;
+ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static final int MenuGroup_android_checkableBehavior = 5;
+ public static final int MenuGroup_android_enabled = 0;
+ public static final int MenuGroup_android_id = 1;
+ public static final int MenuGroup_android_menuCategory = 3;
+ public static final int MenuGroup_android_orderInCategory = 4;
+ public static final int MenuGroup_android_visible = 2;
+ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e };
+ public static final int MenuItem_actionLayout = 14;
+ public static final int MenuItem_actionProviderClass = 16;
+ public static final int MenuItem_actionViewClass = 15;
+ public static final int MenuItem_android_alphabeticShortcut = 9;
+ public static final int MenuItem_android_checkable = 11;
+ public static final int MenuItem_android_checked = 3;
+ public static final int MenuItem_android_enabled = 1;
+ public static final int MenuItem_android_icon = 0;
+ public static final int MenuItem_android_id = 2;
+ public static final int MenuItem_android_menuCategory = 5;
+ public static final int MenuItem_android_numericShortcut = 10;
+ public static final int MenuItem_android_onClick = 12;
+ public static final int MenuItem_android_orderInCategory = 6;
+ public static final int MenuItem_android_title = 7;
+ public static final int MenuItem_android_titleCondensed = 8;
+ public static final int MenuItem_android_visible = 4;
+ public static final int MenuItem_showAsAction = 13;
+ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004f };
+ public static final int MenuView_android_headerBackground = 4;
+ public static final int MenuView_android_horizontalDivider = 2;
+ public static final int MenuView_android_itemBackground = 5;
+ public static final int MenuView_android_itemIconDisabledAlpha = 6;
+ public static final int MenuView_android_itemTextAppearance = 1;
+ public static final int MenuView_android_verticalDivider = 3;
+ public static final int MenuView_android_windowAnimationStyle = 0;
+ public static final int MenuView_preserveIconSpacing = 7;
+ public static final int[] PopupWindow = { 0x01010176, 0x7f010050 };
+ public static final int[] PopupWindowBackgroundState = { 0x7f010051 };
+ public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static final int PopupWindow_android_popupBackground = 0;
+ public static final int PopupWindow_overlapAnchor = 1;
+ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e };
+ public static final int SearchView_android_focusable = 0;
+ public static final int SearchView_android_imeOptions = 3;
+ public static final int SearchView_android_inputType = 2;
+ public static final int SearchView_android_maxWidth = 1;
+ public static final int SearchView_closeIcon = 8;
+ public static final int SearchView_commitIcon = 13;
+ public static final int SearchView_defaultQueryHint = 7;
+ public static final int SearchView_goIcon = 9;
+ public static final int SearchView_iconifiedByDefault = 5;
+ public static final int SearchView_layout = 4;
+ public static final int SearchView_queryBackground = 15;
+ public static final int SearchView_queryHint = 6;
+ public static final int SearchView_searchHintIcon = 11;
+ public static final int SearchView_searchIcon = 10;
+ public static final int SearchView_submitBackground = 16;
+ public static final int SearchView_suggestionRowLayout = 14;
+ public static final int SearchView_voiceIcon = 12;
+ public static final int[] SimpleDraweeView = { 0x7f01005f, 0x7f010060 };
+ public static final int SimpleDraweeView_actualImageResource = 1;
+ public static final int SimpleDraweeView_actualImageUri = 0;
+ public static final int[] Spinner = { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
+ public static final int Spinner_android_dropDownWidth = 2;
+ public static final int Spinner_android_popupBackground = 0;
+ public static final int Spinner_android_prompt = 1;
+ public static final int Spinner_popupTheme = 3;
+ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067 };
+ public static final int SwitchCompat_android_textOff = 1;
+ public static final int SwitchCompat_android_textOn = 0;
+ public static final int SwitchCompat_android_thumb = 2;
+ public static final int SwitchCompat_showText = 9;
+ public static final int SwitchCompat_splitTrack = 8;
+ public static final int SwitchCompat_switchMinWidth = 6;
+ public static final int SwitchCompat_switchPadding = 7;
+ public static final int SwitchCompat_switchTextAppearance = 5;
+ public static final int SwitchCompat_thumbTextPadding = 4;
+ public static final int SwitchCompat_track = 3;
+ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010024 };
+ public static final int TextAppearance_android_shadowColor = 4;
+ public static final int TextAppearance_android_shadowDx = 5;
+ public static final int TextAppearance_android_shadowDy = 6;
+ public static final int TextAppearance_android_shadowRadius = 7;
+ public static final int TextAppearance_android_textColor = 3;
+ public static final int TextAppearance_android_textSize = 0;
+ public static final int TextAppearance_android_textStyle = 2;
+ public static final int TextAppearance_android_typeface = 1;
+ public static final int TextAppearance_textAllCaps = 8;
+ public static final int[] TextStyle = { 0x01010034, 0x01010095, 0x01010097, 0x01010098, 0x010100ab, 0x01010153, 0x0101015d, 0x01010161, 0x01010162, 0x01010163, 0x01010164 };
+ public static final int TextStyle_android_ellipsize = 4;
+ public static final int TextStyle_android_maxLines = 5;
+ public static final int TextStyle_android_shadowColor = 7;
+ public static final int TextStyle_android_shadowDx = 8;
+ public static final int TextStyle_android_shadowDy = 9;
+ public static final int TextStyle_android_shadowRadius = 10;
+ public static final int TextStyle_android_singleLine = 6;
+ public static final int TextStyle_android_textAppearance = 0;
+ public static final int TextStyle_android_textColor = 3;
+ public static final int TextStyle_android_textSize = 1;
+ public static final int TextStyle_android_textStyle = 2;
+ public static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1 };
+ public static final int Theme_actionBarDivider = 23;
+ public static final int Theme_actionBarItemBackground = 24;
+ public static final int Theme_actionBarPopupTheme = 17;
+ public static final int Theme_actionBarSize = 22;
+ public static final int Theme_actionBarSplitStyle = 19;
+ public static final int Theme_actionBarStyle = 18;
+ public static final int Theme_actionBarTabBarStyle = 13;
+ public static final int Theme_actionBarTabStyle = 12;
+ public static final int Theme_actionBarTabTextStyle = 14;
+ public static final int Theme_actionBarTheme = 20;
+ public static final int Theme_actionBarWidgetTheme = 21;
+ public static final int Theme_actionButtonStyle = 49;
+ public static final int Theme_actionDropDownStyle = 45;
+ public static final int Theme_actionMenuTextAppearance = 25;
+ public static final int Theme_actionMenuTextColor = 26;
+ public static final int Theme_actionModeBackground = 29;
+ public static final int Theme_actionModeCloseButtonStyle = 28;
+ public static final int Theme_actionModeCloseDrawable = 31;
+ public static final int Theme_actionModeCopyDrawable = 33;
+ public static final int Theme_actionModeCutDrawable = 32;
+ public static final int Theme_actionModeFindDrawable = 37;
+ public static final int Theme_actionModePasteDrawable = 34;
+ public static final int Theme_actionModePopupWindowStyle = 39;
+ public static final int Theme_actionModeSelectAllDrawable = 35;
+ public static final int Theme_actionModeShareDrawable = 36;
+ public static final int Theme_actionModeSplitBackground = 30;
+ public static final int Theme_actionModeStyle = 27;
+ public static final int Theme_actionModeWebSearchDrawable = 38;
+ public static final int Theme_actionOverflowButtonStyle = 15;
+ public static final int Theme_actionOverflowMenuStyle = 16;
+ public static final int Theme_activityChooserViewStyle = 57;
+ public static final int Theme_alertDialogButtonGroupStyle = 91;
+ public static final int Theme_alertDialogCenterButtons = 92;
+ public static final int Theme_alertDialogStyle = 90;
+ public static final int Theme_alertDialogTheme = 93;
+ public static final int Theme_android_windowAnimationStyle = 1;
+ public static final int Theme_android_windowIsFloating = 0;
+ public static final int Theme_autoCompleteTextViewStyle = 98;
+ public static final int Theme_borderlessButtonStyle = 54;
+ public static final int Theme_buttonBarButtonStyle = 51;
+ public static final int Theme_buttonBarNegativeButtonStyle = 96;
+ public static final int Theme_buttonBarNeutralButtonStyle = 97;
+ public static final int Theme_buttonBarPositiveButtonStyle = 95;
+ public static final int Theme_buttonBarStyle = 50;
+ public static final int Theme_buttonStyle = 99;
+ public static final int Theme_buttonStyleSmall = 100;
+ public static final int Theme_checkboxStyle = 101;
+ public static final int Theme_checkedTextViewStyle = 102;
+ public static final int Theme_colorAccent = 83;
+ public static final int Theme_colorButtonNormal = 87;
+ public static final int Theme_colorControlActivated = 85;
+ public static final int Theme_colorControlHighlight = 86;
+ public static final int Theme_colorControlNormal = 84;
+ public static final int Theme_colorPrimary = 81;
+ public static final int Theme_colorPrimaryDark = 82;
+ public static final int Theme_colorSwitchThumbNormal = 88;
+ public static final int Theme_controlBackground = 89;
+ public static final int Theme_dialogPreferredPadding = 43;
+ public static final int Theme_dialogTheme = 42;
+ public static final int Theme_dividerHorizontal = 56;
+ public static final int Theme_dividerVertical = 55;
+ public static final int Theme_dropDownListViewStyle = 73;
+ public static final int Theme_dropdownListPreferredItemHeight = 46;
+ public static final int Theme_editTextBackground = 63;
+ public static final int Theme_editTextColor = 62;
+ public static final int Theme_editTextStyle = 103;
+ public static final int Theme_homeAsUpIndicator = 48;
+ public static final int Theme_listChoiceBackgroundIndicator = 80;
+ public static final int Theme_listDividerAlertDialog = 44;
+ public static final int Theme_listPopupWindowStyle = 74;
+ public static final int Theme_listPreferredItemHeight = 68;
+ public static final int Theme_listPreferredItemHeightLarge = 70;
+ public static final int Theme_listPreferredItemHeightSmall = 69;
+ public static final int Theme_listPreferredItemPaddingLeft = 71;
+ public static final int Theme_listPreferredItemPaddingRight = 72;
+ public static final int Theme_panelBackground = 77;
+ public static final int Theme_panelMenuListTheme = 79;
+ public static final int Theme_panelMenuListWidth = 78;
+ public static final int Theme_popupMenuStyle = 60;
+ public static final int Theme_popupWindowStyle = 61;
+ public static final int Theme_radioButtonStyle = 104;
+ public static final int Theme_ratingBarStyle = 105;
+ public static final int Theme_searchViewStyle = 67;
+ public static final int Theme_selectableItemBackground = 52;
+ public static final int Theme_selectableItemBackgroundBorderless = 53;
+ public static final int Theme_spinnerDropDownItemStyle = 47;
+ public static final int Theme_spinnerStyle = 106;
+ public static final int Theme_switchStyle = 107;
+ public static final int Theme_textAppearanceLargePopupMenu = 40;
+ public static final int Theme_textAppearanceListItem = 75;
+ public static final int Theme_textAppearanceListItemSmall = 76;
+ public static final int Theme_textAppearanceSearchResultSubtitle = 65;
+ public static final int Theme_textAppearanceSearchResultTitle = 64;
+ public static final int Theme_textAppearanceSmallPopupMenu = 41;
+ public static final int Theme_textColorAlertDialogListItem = 94;
+ public static final int Theme_textColorSearchUrl = 66;
+ public static final int Theme_toolbarNavigationButtonStyle = 59;
+ public static final int Theme_toolbarStyle = 58;
+ public static final int Theme_windowActionBar = 2;
+ public static final int Theme_windowActionBarOverlay = 4;
+ public static final int Theme_windowActionModeOverlay = 5;
+ public static final int Theme_windowFixedHeightMajor = 9;
+ public static final int Theme_windowFixedHeightMinor = 7;
+ public static final int Theme_windowFixedWidthMajor = 6;
+ public static final int Theme_windowFixedWidthMinor = 8;
+ public static final int Theme_windowMinWidthMajor = 10;
+ public static final int Theme_windowMinWidthMinor = 11;
+ public static final int Theme_windowNoTitle = 3;
+ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0 };
+ public static final int Toolbar_android_gravity = 0;
+ public static final int Toolbar_android_minHeight = 1;
+ public static final int Toolbar_collapseContentDescription = 19;
+ public static final int Toolbar_collapseIcon = 18;
+ public static final int Toolbar_contentInsetEnd = 6;
+ public static final int Toolbar_contentInsetLeft = 7;
+ public static final int Toolbar_contentInsetRight = 8;
+ public static final int Toolbar_contentInsetStart = 5;
+ public static final int Toolbar_logo = 4;
+ public static final int Toolbar_logoDescription = 22;
+ public static final int Toolbar_maxButtonHeight = 17;
+ public static final int Toolbar_navigationContentDescription = 21;
+ public static final int Toolbar_navigationIcon = 20;
+ public static final int Toolbar_popupTheme = 9;
+ public static final int Toolbar_subtitle = 3;
+ public static final int Toolbar_subtitleTextAppearance = 11;
+ public static final int Toolbar_subtitleTextColor = 24;
+ public static final int Toolbar_title = 2;
+ public static final int Toolbar_titleMarginBottom = 16;
+ public static final int Toolbar_titleMarginEnd = 14;
+ public static final int Toolbar_titleMarginStart = 13;
+ public static final int Toolbar_titleMarginTop = 15;
+ public static final int Toolbar_titleMargins = 12;
+ public static final int Toolbar_titleTextAppearance = 10;
+ public static final int Toolbar_titleTextColor = 23;
+ public static final int[] View = { 0x01010000, 0x010100da, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3 };
+ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100e4, 0x7f0100e5 };
+ public static final int ViewBackgroundHelper_android_background = 0;
+ public static final int ViewBackgroundHelper_backgroundTint = 1;
+ public static final int ViewBackgroundHelper_backgroundTintMode = 2;
+ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static final int ViewStubCompat_android_id = 0;
+ public static final int ViewStubCompat_android_inflatedId = 2;
+ public static final int ViewStubCompat_android_layout = 1;
+ public static final int View_android_focusable = 1;
+ public static final int View_android_theme = 0;
+ public static final int View_paddingEnd = 3;
+ public static final int View_paddingStart = 2;
+ public static final int View_theme = 4;
+ }
+ public static final class xml {
+ public static final int preferences = 0x7f060000;
+ }
+}
diff --git a/android/app/build/generated/source/r/debug/com/facebook/soloader/R.java b/android/app/build/generated/source/r/debug/com/facebook/soloader/R.java
new file mode 100644
index 00000000..c2500fb1
--- /dev/null
+++ b/android/app/build/generated/source/r/debug/com/facebook/soloader/R.java
@@ -0,0 +1,10 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package com.facebook.soloader;
+
+public final class R {
+}
diff --git a/android/app/build/generated/source/r/debug/com/rntest/R.java b/android/app/build/generated/source/r/debug/com/rntest/R.java
new file mode 100644
index 00000000..cfae1c24
--- /dev/null
+++ b/android/app/build/generated/source/r/debug/com/rntest/R.java
@@ -0,0 +1,7025 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+
+package com.rntest;
+
+public final class R {
+ public static final class anim {
+ public static final int abc_fade_in=0x7f050000;
+ public static final int abc_fade_out=0x7f050001;
+ public static final int abc_grow_fade_in_from_bottom=0x7f050002;
+ public static final int abc_popup_enter=0x7f050003;
+ public static final int abc_popup_exit=0x7f050004;
+ public static final int abc_shrink_fade_out_from_bottom=0x7f050005;
+ public static final int abc_slide_in_bottom=0x7f050006;
+ public static final int abc_slide_in_top=0x7f050007;
+ public static final int abc_slide_out_bottom=0x7f050008;
+ public static final int abc_slide_out_top=0x7f050009;
+ public static final int catalyst_fade_in=0x7f05000a;
+ public static final int catalyst_fade_out=0x7f05000b;
+ public static final int catalyst_push_up_in=0x7f05000c;
+ public static final int catalyst_push_up_out=0x7f05000d;
+ public static final int catalyst_slide_down=0x7f05000e;
+ public static final int catalyst_slide_up=0x7f05000f;
+ }
+ public static final class attr {
+ /** Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionBarDivider=0x7f01007d;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionBarItemBackground=0x7f01007e;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionBarPopupTheme=0x7f010077;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+Constant Value Description
+wrap_content
0
+
+ */
+ public static final int actionBarSize=0x7f01007c;
+ /** Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionBarSplitStyle=0x7f010079;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionBarStyle=0x7f010078;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionBarTabBarStyle=0x7f010073;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionBarTabStyle=0x7f010072;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionBarTabTextStyle=0x7f010074;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionBarTheme=0x7f01007a;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionBarWidgetTheme=0x7f01007b;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionButtonStyle=0x7f010097;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionDropDownStyle=0x7f010093;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionLayout=0x7f01004c;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionMenuTextAppearance=0x7f01007f;
+ /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ */
+ public static final int actionMenuTextColor=0x7f010080;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModeBackground=0x7f010083;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModeCloseButtonStyle=0x7f010082;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModeCloseDrawable=0x7f010085;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModeCopyDrawable=0x7f010087;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModeCutDrawable=0x7f010086;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModeFindDrawable=0x7f01008b;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModePasteDrawable=0x7f010088;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModePopupWindowStyle=0x7f01008d;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModeSelectAllDrawable=0x7f010089;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModeShareDrawable=0x7f01008a;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModeSplitBackground=0x7f010084;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModeStyle=0x7f010081;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionModeWebSearchDrawable=0x7f01008c;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionOverflowButtonStyle=0x7f010075;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actionOverflowMenuStyle=0x7f010076;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int actionProviderClass=0x7f01004e;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int actionViewClass=0x7f01004d;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int activityChooserViewStyle=0x7f01009f;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int actualImageResource=0x7f010060;
+ /**
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+none
-1
+fitXY
0
+fitStart
1
+fitCenter
2
+fitEnd
3
+center
4
+centerInside
5
+centerCrop
6
+focusCrop
7
+
+ */
+ public static final int actualImageScaleType=0x7f01003a;
+ /** Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int actualImageUri=0x7f01005f;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int alertDialogButtonGroupStyle=0x7f0100c1;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int alertDialogCenterButtons=0x7f0100c2;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int alertDialogStyle=0x7f0100c0;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int alertDialogTheme=0x7f0100c3;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int arrowHeadLength=0x7f01002b;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int arrowShaftLength=0x7f01002c;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int autoCompleteTextViewStyle=0x7f0100c8;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int background=0x7f01000c;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int backgroundImage=0x7f01003b;
+ /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ */
+ public static final int backgroundSplit=0x7f01000e;
+ /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ */
+ public static final int backgroundStacked=0x7f01000d;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int backgroundTint=0x7f0100e4;
+ /**
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+src_over
3
+src_in
5
+src_atop
9
+multiply
14
+screen
15
+
+ */
+ public static final int backgroundTintMode=0x7f0100e5;
+ /** Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int barLength=0x7f01002d;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int borderlessButtonStyle=0x7f01009c;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int buttonBarButtonStyle=0x7f010099;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int buttonBarNegativeButtonStyle=0x7f0100c6;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int buttonBarNeutralButtonStyle=0x7f0100c7;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int buttonBarPositiveButtonStyle=0x7f0100c5;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int buttonBarStyle=0x7f010098;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int buttonPanelSideLayout=0x7f01001f;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int buttonStyle=0x7f0100c9;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int buttonStyleSmall=0x7f0100ca;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int buttonTint=0x7f010025;
+ /**
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+src_over
3
+src_in
5
+src_atop
9
+multiply
14
+screen
15
+
+ */
+ public static final int buttonTintMode=0x7f010026;
+ /** Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int checkboxStyle=0x7f0100cb;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int checkedTextViewStyle=0x7f0100cc;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int closeIcon=0x7f010056;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int closeItemLayout=0x7f01001c;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int collapseContentDescription=0x7f0100db;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int collapseIcon=0x7f0100da;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int color=0x7f010027;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int colorAccent=0x7f0100b9;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int colorButtonNormal=0x7f0100bd;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int colorControlActivated=0x7f0100bb;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int colorControlHighlight=0x7f0100bc;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int colorControlNormal=0x7f0100ba;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int colorPrimary=0x7f0100b7;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int colorPrimaryDark=0x7f0100b8;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int colorSwitchThumbNormal=0x7f0100be;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int commitIcon=0x7f01005b;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int contentInsetEnd=0x7f010017;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int contentInsetLeft=0x7f010018;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int contentInsetRight=0x7f010019;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int contentInsetStart=0x7f010016;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int controlBackground=0x7f0100bf;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int customNavigationLayout=0x7f01000f;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int defaultQueryHint=0x7f010055;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int dialogPreferredPadding=0x7f010091;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int dialogTheme=0x7f010090;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+Constant Value Description
+none
0
+useLogo
0x1
+showHome
0x2
+homeAsUp
0x4
+showTitle
0x8
+showCustom
0x10
+disableHome
0x20
+
+ */
+ public static final int displayOptions=0x7f010005;
+ /** Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int divider=0x7f01000b;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int dividerHorizontal=0x7f01009e;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int dividerPadding=0x7f01004a;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int dividerVertical=0x7f01009d;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int drawableSize=0x7f010029;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int drawerArrowStyle=0x7f010000;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int dropDownListViewStyle=0x7f0100af;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int dropdownListPreferredItemHeight=0x7f010094;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int editTextBackground=0x7f0100a5;
+ /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ */
+ public static final int editTextColor=0x7f0100a4;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int editTextStyle=0x7f0100cd;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int elevation=0x7f01001a;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int expandActivityOverflowButtonDrawable=0x7f01001e;
+ /**
Must be an integer value, such as "100
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int fadeDuration=0x7f01002f;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int failureImage=0x7f010035;
+ /**
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+none
-1
+fitXY
0
+fitStart
1
+fitCenter
2
+fitEnd
3
+center
4
+centerInside
5
+centerCrop
6
+focusCrop
7
+
+ */
+ public static final int failureImageScaleType=0x7f010036;
+ /** Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int gapBetweenBars=0x7f01002a;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int goIcon=0x7f010057;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int height=0x7f010001;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int hideOnContentScroll=0x7f010015;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int homeAsUpIndicator=0x7f010096;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int homeLayout=0x7f010010;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int icon=0x7f010009;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int iconifiedByDefault=0x7f010053;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int indeterminateProgressStyle=0x7f010012;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int initialActivityCount=0x7f01001d;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int isLightTheme=0x7f010002;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int itemPadding=0x7f010014;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int layout=0x7f010052;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int listChoiceBackgroundIndicator=0x7f0100b6;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int listDividerAlertDialog=0x7f010092;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int listItemLayout=0x7f010023;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int listLayout=0x7f010020;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int listPopupWindowStyle=0x7f0100b0;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int listPreferredItemHeight=0x7f0100aa;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int listPreferredItemHeightLarge=0x7f0100ac;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int listPreferredItemHeightSmall=0x7f0100ab;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int listPreferredItemPaddingLeft=0x7f0100ad;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int listPreferredItemPaddingRight=0x7f0100ae;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int logo=0x7f01000a;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int logoDescription=0x7f0100de;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int maxButtonHeight=0x7f0100d9;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int measureWithLargestChild=0x7f010048;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int multiChoiceItemLayout=0x7f010021;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int navigationContentDescription=0x7f0100dd;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int navigationIcon=0x7f0100dc;
+ /**
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+normal
0
+listMode
1
+tabMode
2
+
+ */
+ public static final int navigationMode=0x7f010004;
+ /** Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int overlapAnchor=0x7f010050;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int overlayImage=0x7f01003c;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int paddingEnd=0x7f0100e2;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int paddingStart=0x7f0100e1;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int panelBackground=0x7f0100b3;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int panelMenuListTheme=0x7f0100b5;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int panelMenuListWidth=0x7f0100b4;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int placeholderImage=0x7f010031;
+ /**
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+none
-1
+fitXY
0
+fitStart
1
+fitCenter
2
+fitEnd
3
+center
4
+centerInside
5
+centerCrop
6
+focusCrop
7
+
+ */
+ public static final int placeholderImageScaleType=0x7f010032;
+ /** Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int popupMenuStyle=0x7f0100a2;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int popupTheme=0x7f01001b;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int popupWindowStyle=0x7f0100a3;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int preserveIconSpacing=0x7f01004f;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int pressedStateOverlayImage=0x7f01003d;
+ /**
Must be an integer value, such as "100
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int progressBarAutoRotateInterval=0x7f010039;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int progressBarImage=0x7f010037;
+ /**
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+none
-1
+fitXY
0
+fitStart
1
+fitCenter
2
+fitEnd
3
+center
4
+centerInside
5
+centerCrop
6
+focusCrop
7
+
+ */
+ public static final int progressBarImageScaleType=0x7f010038;
+ /** Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int progressBarPadding=0x7f010013;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int progressBarStyle=0x7f010011;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int queryBackground=0x7f01005d;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int queryHint=0x7f010054;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int radioButtonStyle=0x7f0100ce;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int ratingBarStyle=0x7f0100cf;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int retryImage=0x7f010033;
+ /**
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+none
-1
+fitXY
0
+fitStart
1
+fitCenter
2
+fitEnd
3
+center
4
+centerInside
5
+centerCrop
6
+focusCrop
7
+
+ */
+ public static final int retryImageScaleType=0x7f010034;
+ /** Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int roundAsCircle=0x7f01003e;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int roundBottomLeft=0x7f010043;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int roundBottomRight=0x7f010042;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int roundTopLeft=0x7f010040;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int roundTopRight=0x7f010041;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int roundWithOverlayColor=0x7f010044;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int roundedCornerRadius=0x7f01003f;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int roundingBorderColor=0x7f010046;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int roundingBorderPadding=0x7f010047;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int roundingBorderWidth=0x7f010045;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int searchHintIcon=0x7f010059;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int searchIcon=0x7f010058;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int searchViewStyle=0x7f0100a9;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int selectableItemBackground=0x7f01009a;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int selectableItemBackgroundBorderless=0x7f01009b;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+Constant Value Description
+never
0
+ifRoom
1
+always
2
+withText
4
+collapseActionView
8
+
+ */
+ public static final int showAsAction=0x7f01004b;
+ /** Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+Constant Value Description
+none
0
+beginning
1
+middle
2
+end
4
+
+ */
+ public static final int showDividers=0x7f010049;
+ /** Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int showText=0x7f010067;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int singleChoiceItemLayout=0x7f010022;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int spinBars=0x7f010028;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int spinnerDropDownItemStyle=0x7f010095;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int spinnerStyle=0x7f0100d0;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int splitTrack=0x7f010066;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int state_above_anchor=0x7f010051;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int submitBackground=0x7f01005e;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int subtitle=0x7f010006;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int subtitleTextAppearance=0x7f0100d3;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int subtitleTextColor=0x7f0100e0;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int subtitleTextStyle=0x7f010008;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int suggestionRowLayout=0x7f01005c;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int switchMinWidth=0x7f010064;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int switchPadding=0x7f010065;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int switchStyle=0x7f0100d1;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int switchTextAppearance=0x7f010063;
+ /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a boolean value, either "true
" or "false
".
+ */
+ public static final int textAllCaps=0x7f010024;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int textAppearanceLargePopupMenu=0x7f01008e;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int textAppearanceListItem=0x7f0100b1;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int textAppearanceListItemSmall=0x7f0100b2;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int textAppearanceSearchResultSubtitle=0x7f0100a7;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int textAppearanceSearchResultTitle=0x7f0100a6;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int textAppearanceSmallPopupMenu=0x7f01008f;
+ /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ */
+ public static final int textColorAlertDialogListItem=0x7f0100c4;
+ /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ */
+ public static final int textColorSearchUrl=0x7f0100a8;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int theme=0x7f0100e3;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int thickness=0x7f01002e;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int thumbTextPadding=0x7f010062;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int title=0x7f010003;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int titleMarginBottom=0x7f0100d8;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int titleMarginEnd=0x7f0100d6;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int titleMarginStart=0x7f0100d5;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int titleMarginTop=0x7f0100d7;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int titleMargins=0x7f0100d4;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int titleTextAppearance=0x7f0100d2;
+ /**
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int titleTextColor=0x7f0100df;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int titleTextStyle=0x7f010007;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int toolbarNavigationButtonStyle=0x7f0100a1;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int toolbarStyle=0x7f0100a0;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int track=0x7f010061;
+ /**
Must be a floating point value, such as "1.2
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int viewAspectRatio=0x7f010030;
+ /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ */
+ public static final int voiceIcon=0x7f01005a;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int windowActionBar=0x7f010068;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int windowActionBarOverlay=0x7f01006a;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int windowActionModeOverlay=0x7f01006b;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int windowFixedHeightMajor=0x7f01006f;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int windowFixedHeightMinor=0x7f01006d;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int windowFixedWidthMajor=0x7f01006c;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int windowFixedWidthMinor=0x7f01006e;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int windowMinWidthMajor=0x7f010070;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int windowMinWidthMinor=0x7f010071;
+ /**
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ */
+ public static final int windowNoTitle=0x7f010069;
+ }
+ public static final class bool {
+ public static final int abc_action_bar_embed_tabs=0x7f0a0002;
+ public static final int abc_action_bar_embed_tabs_pre_jb=0x7f0a0000;
+ public static final int abc_action_bar_expanded_action_views_exclusive=0x7f0a0003;
+ public static final int abc_config_actionMenuItemAllCaps=0x7f0a0004;
+ public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0001;
+ public static final int abc_config_closeDialogWhenTouchOutside=0x7f0a0005;
+ public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0006;
+ }
+ public static final class color {
+ public static final int abc_background_cache_hint_selector_material_dark=0x7f0c003b;
+ public static final int abc_background_cache_hint_selector_material_light=0x7f0c003c;
+ public static final int abc_color_highlight_material=0x7f0c003d;
+ public static final int abc_input_method_navigation_guard=0x7f0c0000;
+ public static final int abc_primary_text_disable_only_material_dark=0x7f0c003e;
+ public static final int abc_primary_text_disable_only_material_light=0x7f0c003f;
+ public static final int abc_primary_text_material_dark=0x7f0c0040;
+ public static final int abc_primary_text_material_light=0x7f0c0041;
+ public static final int abc_search_url_text=0x7f0c0042;
+ public static final int abc_search_url_text_normal=0x7f0c0001;
+ public static final int abc_search_url_text_pressed=0x7f0c0002;
+ public static final int abc_search_url_text_selected=0x7f0c0003;
+ public static final int abc_secondary_text_material_dark=0x7f0c0043;
+ public static final int abc_secondary_text_material_light=0x7f0c0044;
+ public static final int accent_material_dark=0x7f0c0004;
+ public static final int accent_material_light=0x7f0c0005;
+ public static final int background_floating_material_dark=0x7f0c0006;
+ public static final int background_floating_material_light=0x7f0c0007;
+ public static final int background_material_dark=0x7f0c0008;
+ public static final int background_material_light=0x7f0c0009;
+ public static final int bright_foreground_disabled_material_dark=0x7f0c000a;
+ public static final int bright_foreground_disabled_material_light=0x7f0c000b;
+ public static final int bright_foreground_inverse_material_dark=0x7f0c000c;
+ public static final int bright_foreground_inverse_material_light=0x7f0c000d;
+ public static final int bright_foreground_material_dark=0x7f0c000e;
+ public static final int bright_foreground_material_light=0x7f0c000f;
+ public static final int button_material_dark=0x7f0c0010;
+ public static final int button_material_light=0x7f0c0011;
+ public static final int catalyst_redbox_background=0x7f0c0012;
+ public static final int dim_foreground_disabled_material_dark=0x7f0c0013;
+ public static final int dim_foreground_disabled_material_light=0x7f0c0014;
+ public static final int dim_foreground_material_dark=0x7f0c0015;
+ public static final int dim_foreground_material_light=0x7f0c0016;
+ public static final int foreground_material_dark=0x7f0c0017;
+ public static final int foreground_material_light=0x7f0c0018;
+ public static final int highlighted_text_material_dark=0x7f0c0019;
+ public static final int highlighted_text_material_light=0x7f0c001a;
+ public static final int hint_foreground_material_dark=0x7f0c001b;
+ public static final int hint_foreground_material_light=0x7f0c001c;
+ public static final int material_blue_grey_800=0x7f0c001d;
+ public static final int material_blue_grey_900=0x7f0c001e;
+ public static final int material_blue_grey_950=0x7f0c001f;
+ public static final int material_deep_teal_200=0x7f0c0020;
+ public static final int material_deep_teal_500=0x7f0c0021;
+ public static final int material_grey_100=0x7f0c0022;
+ public static final int material_grey_300=0x7f0c0023;
+ public static final int material_grey_50=0x7f0c0024;
+ public static final int material_grey_600=0x7f0c0025;
+ public static final int material_grey_800=0x7f0c0026;
+ public static final int material_grey_850=0x7f0c0027;
+ public static final int material_grey_900=0x7f0c0028;
+ public static final int primary_dark_material_dark=0x7f0c0029;
+ public static final int primary_dark_material_light=0x7f0c002a;
+ public static final int primary_material_dark=0x7f0c002b;
+ public static final int primary_material_light=0x7f0c002c;
+ public static final int primary_text_default_material_dark=0x7f0c002d;
+ public static final int primary_text_default_material_light=0x7f0c002e;
+ public static final int primary_text_disabled_material_dark=0x7f0c002f;
+ public static final int primary_text_disabled_material_light=0x7f0c0030;
+ public static final int ripple_material_dark=0x7f0c0031;
+ public static final int ripple_material_light=0x7f0c0032;
+ public static final int secondary_text_default_material_dark=0x7f0c0033;
+ public static final int secondary_text_default_material_light=0x7f0c0034;
+ public static final int secondary_text_disabled_material_dark=0x7f0c0035;
+ public static final int secondary_text_disabled_material_light=0x7f0c0036;
+ public static final int switch_thumb_disabled_material_dark=0x7f0c0037;
+ public static final int switch_thumb_disabled_material_light=0x7f0c0038;
+ public static final int switch_thumb_material_dark=0x7f0c0045;
+ public static final int switch_thumb_material_light=0x7f0c0046;
+ public static final int switch_thumb_normal_material_dark=0x7f0c0039;
+ public static final int switch_thumb_normal_material_light=0x7f0c003a;
+ }
+ public static final class dimen {
+ public static final int abc_action_bar_content_inset_material=0x7f08000b;
+ public static final int abc_action_bar_default_height_material=0x7f080001;
+ public static final int abc_action_bar_default_padding_end_material=0x7f08000c;
+ public static final int abc_action_bar_default_padding_start_material=0x7f08000d;
+ public static final int abc_action_bar_icon_vertical_padding_material=0x7f08000f;
+ public static final int abc_action_bar_overflow_padding_end_material=0x7f080010;
+ public static final int abc_action_bar_overflow_padding_start_material=0x7f080011;
+ public static final int abc_action_bar_progress_bar_size=0x7f080002;
+ public static final int abc_action_bar_stacked_max_height=0x7f080012;
+ public static final int abc_action_bar_stacked_tab_max_width=0x7f080013;
+ public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f080014;
+ public static final int abc_action_bar_subtitle_top_margin_material=0x7f080015;
+ public static final int abc_action_button_min_height_material=0x7f080016;
+ public static final int abc_action_button_min_width_material=0x7f080017;
+ public static final int abc_action_button_min_width_overflow_material=0x7f080018;
+ public static final int abc_alert_dialog_button_bar_height=0x7f080000;
+ public static final int abc_button_inset_horizontal_material=0x7f080019;
+ public static final int abc_button_inset_vertical_material=0x7f08001a;
+ public static final int abc_button_padding_horizontal_material=0x7f08001b;
+ public static final int abc_button_padding_vertical_material=0x7f08001c;
+ public static final int abc_config_prefDialogWidth=0x7f080005;
+ public static final int abc_control_corner_material=0x7f08001d;
+ public static final int abc_control_inset_material=0x7f08001e;
+ public static final int abc_control_padding_material=0x7f08001f;
+ public static final int abc_dialog_list_padding_vertical_material=0x7f080020;
+ public static final int abc_dialog_min_width_major=0x7f080021;
+ public static final int abc_dialog_min_width_minor=0x7f080022;
+ public static final int abc_dialog_padding_material=0x7f080023;
+ public static final int abc_dialog_padding_top_material=0x7f080024;
+ public static final int abc_disabled_alpha_material_dark=0x7f080025;
+ public static final int abc_disabled_alpha_material_light=0x7f080026;
+ public static final int abc_dropdownitem_icon_width=0x7f080027;
+ public static final int abc_dropdownitem_text_padding_left=0x7f080028;
+ public static final int abc_dropdownitem_text_padding_right=0x7f080029;
+ public static final int abc_edit_text_inset_bottom_material=0x7f08002a;
+ public static final int abc_edit_text_inset_horizontal_material=0x7f08002b;
+ public static final int abc_edit_text_inset_top_material=0x7f08002c;
+ public static final int abc_floating_window_z=0x7f08002d;
+ public static final int abc_list_item_padding_horizontal_material=0x7f08002e;
+ public static final int abc_panel_menu_list_width=0x7f08002f;
+ public static final int abc_search_view_preferred_width=0x7f080030;
+ public static final int abc_search_view_text_min_width=0x7f080006;
+ public static final int abc_switch_padding=0x7f08000e;
+ public static final int abc_text_size_body_1_material=0x7f080031;
+ public static final int abc_text_size_body_2_material=0x7f080032;
+ public static final int abc_text_size_button_material=0x7f080033;
+ public static final int abc_text_size_caption_material=0x7f080034;
+ public static final int abc_text_size_display_1_material=0x7f080035;
+ public static final int abc_text_size_display_2_material=0x7f080036;
+ public static final int abc_text_size_display_3_material=0x7f080037;
+ public static final int abc_text_size_display_4_material=0x7f080038;
+ public static final int abc_text_size_headline_material=0x7f080039;
+ public static final int abc_text_size_large_material=0x7f08003a;
+ public static final int abc_text_size_medium_material=0x7f08003b;
+ public static final int abc_text_size_menu_material=0x7f08003c;
+ public static final int abc_text_size_small_material=0x7f08003d;
+ public static final int abc_text_size_subhead_material=0x7f08003e;
+ public static final int abc_text_size_subtitle_material_toolbar=0x7f080003;
+ public static final int abc_text_size_title_material=0x7f08003f;
+ public static final int abc_text_size_title_material_toolbar=0x7f080004;
+ public static final int dialog_fixed_height_major=0x7f080007;
+ public static final int dialog_fixed_height_minor=0x7f080008;
+ public static final int dialog_fixed_width_major=0x7f080009;
+ public static final int dialog_fixed_width_minor=0x7f08000a;
+ public static final int disabled_alpha_material_dark=0x7f080040;
+ public static final int disabled_alpha_material_light=0x7f080041;
+ public static final int highlight_alpha_material_colored=0x7f080042;
+ public static final int highlight_alpha_material_dark=0x7f080043;
+ public static final int highlight_alpha_material_light=0x7f080044;
+ public static final int notification_large_icon_height=0x7f080045;
+ public static final int notification_large_icon_width=0x7f080046;
+ public static final int notification_subtext_size=0x7f080047;
+ }
+ public static final class drawable {
+ public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
+ public static final int abc_action_bar_item_background_material=0x7f020001;
+ public static final int abc_btn_borderless_material=0x7f020002;
+ public static final int abc_btn_check_material=0x7f020003;
+ public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
+ public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
+ public static final int abc_btn_colored_material=0x7f020006;
+ public static final int abc_btn_default_mtrl_shape=0x7f020007;
+ public static final int abc_btn_radio_material=0x7f020008;
+ public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
+ public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
+ public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b;
+ public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c;
+ public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d;
+ public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e;
+ public static final int abc_cab_background_internal_bg=0x7f02000f;
+ public static final int abc_cab_background_top_material=0x7f020010;
+ public static final int abc_cab_background_top_mtrl_alpha=0x7f020011;
+ public static final int abc_control_background_material=0x7f020012;
+ public static final int abc_dialog_material_background_dark=0x7f020013;
+ public static final int abc_dialog_material_background_light=0x7f020014;
+ public static final int abc_edit_text_material=0x7f020015;
+ public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016;
+ public static final int abc_ic_clear_mtrl_alpha=0x7f020017;
+ public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018;
+ public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019;
+ public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a;
+ public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b;
+ public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c;
+ public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d;
+ public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e;
+ public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f;
+ public static final int abc_ic_search_api_mtrl_alpha=0x7f020020;
+ public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020021;
+ public static final int abc_item_background_holo_dark=0x7f020022;
+ public static final int abc_item_background_holo_light=0x7f020023;
+ public static final int abc_list_divider_mtrl_alpha=0x7f020024;
+ public static final int abc_list_focused_holo=0x7f020025;
+ public static final int abc_list_longpressed_holo=0x7f020026;
+ public static final int abc_list_pressed_holo_dark=0x7f020027;
+ public static final int abc_list_pressed_holo_light=0x7f020028;
+ public static final int abc_list_selector_background_transition_holo_dark=0x7f020029;
+ public static final int abc_list_selector_background_transition_holo_light=0x7f02002a;
+ public static final int abc_list_selector_disabled_holo_dark=0x7f02002b;
+ public static final int abc_list_selector_disabled_holo_light=0x7f02002c;
+ public static final int abc_list_selector_holo_dark=0x7f02002d;
+ public static final int abc_list_selector_holo_light=0x7f02002e;
+ public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002f;
+ public static final int abc_popup_background_mtrl_mult=0x7f020030;
+ public static final int abc_ratingbar_full_material=0x7f020031;
+ public static final int abc_spinner_mtrl_am_alpha=0x7f020032;
+ public static final int abc_spinner_textfield_background_material=0x7f020033;
+ public static final int abc_switch_thumb_material=0x7f020034;
+ public static final int abc_switch_track_mtrl_alpha=0x7f020035;
+ public static final int abc_tab_indicator_material=0x7f020036;
+ public static final int abc_tab_indicator_mtrl_alpha=0x7f020037;
+ public static final int abc_text_cursor_material=0x7f020038;
+ public static final int abc_textfield_activated_mtrl_alpha=0x7f020039;
+ public static final int abc_textfield_default_mtrl_alpha=0x7f02003a;
+ public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02003b;
+ public static final int abc_textfield_search_default_mtrl_alpha=0x7f02003c;
+ public static final int abc_textfield_search_material=0x7f02003d;
+ public static final int notification_template_icon_bg=0x7f02003e;
+ }
+ public static final class id {
+ public static final int action0=0x7f0d0058;
+ public static final int action_bar=0x7f0d0048;
+ public static final int action_bar_activity_content=0x7f0d0000;
+ public static final int action_bar_container=0x7f0d0047;
+ public static final int action_bar_root=0x7f0d0043;
+ public static final int action_bar_spinner=0x7f0d0001;
+ public static final int action_bar_subtitle=0x7f0d002c;
+ public static final int action_bar_title=0x7f0d002b;
+ public static final int action_context_bar=0x7f0d0049;
+ public static final int action_divider=0x7f0d005c;
+ public static final int action_menu_divider=0x7f0d0002;
+ public static final int action_menu_presenter=0x7f0d0003;
+ public static final int action_mode_bar=0x7f0d0045;
+ public static final int action_mode_bar_stub=0x7f0d0044;
+ public static final int action_mode_close_button=0x7f0d002d;
+ public static final int activity_chooser_view_content=0x7f0d002e;
+ public static final int alertTitle=0x7f0d0038;
+ public static final int always=0x7f0d0025;
+ public static final int beginning=0x7f0d0022;
+ public static final int buttonPanel=0x7f0d003e;
+ public static final int cancel_action=0x7f0d0059;
+ public static final int catalyst_redbox_title=0x7f0d0067;
+ public static final int center=0x7f0d001a;
+ public static final int centerCrop=0x7f0d001b;
+ public static final int centerInside=0x7f0d001c;
+ public static final int checkbox=0x7f0d0040;
+ public static final int chronometer=0x7f0d005f;
+ public static final int collapseActionView=0x7f0d0026;
+ public static final int contentPanel=0x7f0d0039;
+ public static final int custom=0x7f0d003d;
+ public static final int customPanel=0x7f0d003c;
+ public static final int decor_content_parent=0x7f0d0046;
+ public static final int default_activity_button=0x7f0d0031;
+ public static final int disableHome=0x7f0d000e;
+ public static final int edit_query=0x7f0d004a;
+ public static final int end=0x7f0d0023;
+ public static final int end_padder=0x7f0d0064;
+ public static final int expand_activities_button=0x7f0d002f;
+ public static final int expanded_menu=0x7f0d003f;
+ public static final int fitCenter=0x7f0d001d;
+ public static final int fitEnd=0x7f0d001e;
+ public static final int fitStart=0x7f0d001f;
+ public static final int fitXY=0x7f0d0020;
+ public static final int focusCrop=0x7f0d0021;
+ public static final int fps_text=0x7f0d0057;
+ public static final int home=0x7f0d0004;
+ public static final int homeAsUp=0x7f0d000f;
+ public static final int icon=0x7f0d0033;
+ public static final int ifRoom=0x7f0d0027;
+ public static final int image=0x7f0d0030;
+ public static final int info=0x7f0d0063;
+ public static final int line1=0x7f0d005d;
+ public static final int line3=0x7f0d0061;
+ public static final int listMode=0x7f0d000b;
+ public static final int list_item=0x7f0d0032;
+ public static final int media_actions=0x7f0d005b;
+ public static final int middle=0x7f0d0024;
+ public static final int multiply=0x7f0d0015;
+ public static final int never=0x7f0d0028;
+ public static final int none=0x7f0d0010;
+ public static final int normal=0x7f0d000c;
+ public static final int parentPanel=0x7f0d0035;
+ public static final int progress_circular=0x7f0d0005;
+ public static final int progress_horizontal=0x7f0d0006;
+ public static final int radio=0x7f0d0042;
+ public static final int react_test_id=0x7f0d0007;
+ public static final int rn_frame_file=0x7f0d0066;
+ public static final int rn_frame_method=0x7f0d0065;
+ public static final int rn_redbox_copy_button=0x7f0d006e;
+ public static final int rn_redbox_dismiss_button=0x7f0d006c;
+ public static final int rn_redbox_line_separator=0x7f0d0069;
+ public static final int rn_redbox_loading_indicator=0x7f0d006a;
+ public static final int rn_redbox_reload_button=0x7f0d006d;
+ public static final int rn_redbox_report_button=0x7f0d006f;
+ public static final int rn_redbox_report_label=0x7f0d006b;
+ public static final int rn_redbox_stack=0x7f0d0068;
+ public static final int screen=0x7f0d0016;
+ public static final int scrollView=0x7f0d003a;
+ public static final int search_badge=0x7f0d004c;
+ public static final int search_bar=0x7f0d004b;
+ public static final int search_button=0x7f0d004d;
+ public static final int search_close_btn=0x7f0d0052;
+ public static final int search_edit_frame=0x7f0d004e;
+ public static final int search_go_btn=0x7f0d0054;
+ public static final int search_mag_icon=0x7f0d004f;
+ public static final int search_plate=0x7f0d0050;
+ public static final int search_src_text=0x7f0d0051;
+ public static final int search_voice_btn=0x7f0d0055;
+ public static final int select_dialog_listview=0x7f0d0056;
+ public static final int shortcut=0x7f0d0041;
+ public static final int showCustom=0x7f0d0011;
+ public static final int showHome=0x7f0d0012;
+ public static final int showTitle=0x7f0d0013;
+ public static final int split_action_bar=0x7f0d0008;
+ public static final int src_atop=0x7f0d0017;
+ public static final int src_in=0x7f0d0018;
+ public static final int src_over=0x7f0d0019;
+ public static final int status_bar_latest_event_content=0x7f0d005a;
+ public static final int submit_area=0x7f0d0053;
+ public static final int tabMode=0x7f0d000d;
+ public static final int text=0x7f0d0062;
+ public static final int text2=0x7f0d0060;
+ public static final int textSpacerNoButtons=0x7f0d003b;
+ public static final int time=0x7f0d005e;
+ public static final int title=0x7f0d0034;
+ public static final int title_template=0x7f0d0037;
+ public static final int topPanel=0x7f0d0036;
+ public static final int up=0x7f0d0009;
+ public static final int useLogo=0x7f0d0014;
+ public static final int view_tag_native_id=0x7f0d000a;
+ public static final int withText=0x7f0d0029;
+ public static final int wrap_content=0x7f0d002a;
+ }
+ public static final class integer {
+ public static final int abc_config_activityDefaultDur=0x7f0b0001;
+ public static final int abc_config_activityShortDur=0x7f0b0002;
+ public static final int abc_max_action_buttons=0x7f0b0000;
+ public static final int cancel_button_image_alpha=0x7f0b0003;
+ public static final int status_bar_notification_info_maxnum=0x7f0b0004;
+ }
+ public static final class layout {
+ public static final int abc_action_bar_title_item=0x7f040000;
+ public static final int abc_action_bar_up_container=0x7f040001;
+ public static final int abc_action_bar_view_list_nav_layout=0x7f040002;
+ public static final int abc_action_menu_item_layout=0x7f040003;
+ public static final int abc_action_menu_layout=0x7f040004;
+ public static final int abc_action_mode_bar=0x7f040005;
+ public static final int abc_action_mode_close_item_material=0x7f040006;
+ public static final int abc_activity_chooser_view=0x7f040007;
+ public static final int abc_activity_chooser_view_list_item=0x7f040008;
+ public static final int abc_alert_dialog_material=0x7f040009;
+ public static final int abc_dialog_title_material=0x7f04000a;
+ public static final int abc_expanded_menu_layout=0x7f04000b;
+ public static final int abc_list_menu_item_checkbox=0x7f04000c;
+ public static final int abc_list_menu_item_icon=0x7f04000d;
+ public static final int abc_list_menu_item_layout=0x7f04000e;
+ public static final int abc_list_menu_item_radio=0x7f04000f;
+ public static final int abc_popup_menu_item_layout=0x7f040010;
+ public static final int abc_screen_content_include=0x7f040011;
+ public static final int abc_screen_simple=0x7f040012;
+ public static final int abc_screen_simple_overlay_action_mode=0x7f040013;
+ public static final int abc_screen_toolbar=0x7f040014;
+ public static final int abc_search_dropdown_item_icons_2line=0x7f040015;
+ public static final int abc_search_view=0x7f040016;
+ public static final int abc_select_dialog_material=0x7f040017;
+ public static final int dev_loading_view=0x7f040018;
+ public static final int fps_view=0x7f040019;
+ public static final int notification_media_action=0x7f04001a;
+ public static final int notification_media_cancel_action=0x7f04001b;
+ public static final int notification_template_big_media=0x7f04001c;
+ public static final int notification_template_big_media_narrow=0x7f04001d;
+ public static final int notification_template_lines=0x7f04001e;
+ public static final int notification_template_media=0x7f04001f;
+ public static final int notification_template_part_chronometer=0x7f040020;
+ public static final int notification_template_part_time=0x7f040021;
+ public static final int redbox_item_frame=0x7f040022;
+ public static final int redbox_item_title=0x7f040023;
+ public static final int redbox_view=0x7f040024;
+ public static final int select_dialog_item_material=0x7f040025;
+ public static final int select_dialog_multichoice_material=0x7f040026;
+ public static final int select_dialog_singlechoice_material=0x7f040027;
+ public static final int support_simple_spinner_dropdown_item=0x7f040028;
+ }
+ public static final class mipmap {
+ public static final int ic_launcher=0x7f030000;
+ }
+ public static final class string {
+ public static final int abc_action_bar_home_description=0x7f070000;
+ public static final int abc_action_bar_home_description_format=0x7f070001;
+ public static final int abc_action_bar_home_subtitle_description_format=0x7f070002;
+ public static final int abc_action_bar_up_description=0x7f070003;
+ public static final int abc_action_menu_overflow_description=0x7f070004;
+ public static final int abc_action_mode_done=0x7f070005;
+ public static final int abc_activity_chooser_view_see_all=0x7f070006;
+ public static final int abc_activitychooserview_choose_application=0x7f070007;
+ public static final int abc_search_hint=0x7f070008;
+ public static final int abc_searchview_description_clear=0x7f070009;
+ public static final int abc_searchview_description_query=0x7f07000a;
+ public static final int abc_searchview_description_search=0x7f07000b;
+ public static final int abc_searchview_description_submit=0x7f07000c;
+ public static final int abc_searchview_description_voice=0x7f07000d;
+ public static final int abc_shareactionprovider_share_with=0x7f07000e;
+ public static final int abc_shareactionprovider_share_with_application=0x7f07000f;
+ public static final int abc_toolbar_collapse_description=0x7f070010;
+ public static final int app_name=0x7f070012;
+ public static final int catalyst_copy_button=0x7f070013;
+ public static final int catalyst_debugjs=0x7f070014;
+ public static final int catalyst_debugjs_nuclide=0x7f070015;
+ public static final int catalyst_debugjs_nuclide_failure=0x7f070016;
+ public static final int catalyst_debugjs_off=0x7f070017;
+ public static final int catalyst_dismiss_button=0x7f070018;
+ public static final int catalyst_element_inspector=0x7f070019;
+ public static final int catalyst_heap_capture=0x7f07001a;
+ public static final int catalyst_hot_module_replacement=0x7f07001b;
+ public static final int catalyst_hot_module_replacement_off=0x7f07001c;
+ public static final int catalyst_jsload_error=0x7f07001d;
+ public static final int catalyst_live_reload=0x7f07001e;
+ public static final int catalyst_live_reload_off=0x7f07001f;
+ public static final int catalyst_loading_from_url=0x7f070020;
+ public static final int catalyst_perf_monitor=0x7f070021;
+ public static final int catalyst_perf_monitor_off=0x7f070022;
+ public static final int catalyst_poke_sampling_profiler=0x7f070023;
+ public static final int catalyst_reload_button=0x7f070024;
+ public static final int catalyst_reloadjs=0x7f070025;
+ public static final int catalyst_remotedbg_error=0x7f070026;
+ public static final int catalyst_remotedbg_message=0x7f070027;
+ public static final int catalyst_report_button=0x7f070028;
+ public static final int catalyst_settings=0x7f070029;
+ public static final int catalyst_settings_title=0x7f07002a;
+ public static final int status_bar_notification_info_overflow=0x7f070011;
+ }
+ public static final class style {
+ public static final int AlertDialog_AppCompat=0x7f09007a;
+ public static final int AlertDialog_AppCompat_Light=0x7f09007b;
+ public static final int Animation_AppCompat_Dialog=0x7f09007c;
+ public static final int Animation_AppCompat_DropDownUp=0x7f09007d;
+ public static final int Animation_Catalyst_RedBox=0x7f09007e;
+ /** Customize your theme here.
+ */
+ public static final int AppTheme=0x7f09007f;
+ public static final int Base_AlertDialog_AppCompat=0x7f090080;
+ public static final int Base_AlertDialog_AppCompat_Light=0x7f090081;
+ public static final int Base_Animation_AppCompat_Dialog=0x7f090082;
+ public static final int Base_Animation_AppCompat_DropDownUp=0x7f090083;
+ public static final int Base_DialogWindowTitle_AppCompat=0x7f090084;
+ public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f090085;
+ public static final int Base_TextAppearance_AppCompat=0x7f09002d;
+ public static final int Base_TextAppearance_AppCompat_Body1=0x7f09002e;
+ public static final int Base_TextAppearance_AppCompat_Body2=0x7f09002f;
+ public static final int Base_TextAppearance_AppCompat_Button=0x7f090018;
+ public static final int Base_TextAppearance_AppCompat_Caption=0x7f090030;
+ public static final int Base_TextAppearance_AppCompat_Display1=0x7f090031;
+ public static final int Base_TextAppearance_AppCompat_Display2=0x7f090032;
+ public static final int Base_TextAppearance_AppCompat_Display3=0x7f090033;
+ public static final int Base_TextAppearance_AppCompat_Display4=0x7f090034;
+ public static final int Base_TextAppearance_AppCompat_Headline=0x7f090035;
+ public static final int Base_TextAppearance_AppCompat_Inverse=0x7f090003;
+ public static final int Base_TextAppearance_AppCompat_Large=0x7f090036;
+ public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f090004;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f090037;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f090038;
+ public static final int Base_TextAppearance_AppCompat_Medium=0x7f090039;
+ public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f090005;
+ public static final int Base_TextAppearance_AppCompat_Menu=0x7f09003a;
+ public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f090086;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f09003b;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f09003c;
+ public static final int Base_TextAppearance_AppCompat_Small=0x7f09003d;
+ public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f090006;
+ public static final int Base_TextAppearance_AppCompat_Subhead=0x7f09003e;
+ public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090007;
+ public static final int Base_TextAppearance_AppCompat_Title=0x7f09003f;
+ public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f090008;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090040;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090041;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090042;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090043;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090044;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090045;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090046;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f090047;
+ public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090076;
+ public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f090087;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090048;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090049;
+ public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f09004a;
+ public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f09004b;
+ public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f090088;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f09004c;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f09004d;
+ public static final int Base_Theme_AppCompat=0x7f09004e;
+ public static final int Base_Theme_AppCompat_CompactMenu=0x7f090089;
+ public static final int Base_Theme_AppCompat_Dialog=0x7f090009;
+ public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f09008a;
+ public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f09008b;
+ public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f09008c;
+ public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090001;
+ public static final int Base_Theme_AppCompat_Light=0x7f09004f;
+ public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f09008d;
+ public static final int Base_Theme_AppCompat_Light_Dialog=0x7f09000a;
+ public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f09008e;
+ public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f09008f;
+ public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f090090;
+ public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090002;
+ public static final int Base_ThemeOverlay_AppCompat=0x7f090091;
+ public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f090092;
+ public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f090093;
+ public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f090094;
+ public static final int Base_ThemeOverlay_AppCompat_Light=0x7f090095;
+ public static final int Base_V11_Theme_AppCompat_Dialog=0x7f09000b;
+ public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f09000c;
+ public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f090014;
+ public static final int Base_V12_Widget_AppCompat_EditText=0x7f090015;
+ public static final int Base_V21_Theme_AppCompat=0x7f090050;
+ public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090051;
+ public static final int Base_V21_Theme_AppCompat_Light=0x7f090052;
+ public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090053;
+ public static final int Base_V22_Theme_AppCompat=0x7f090074;
+ public static final int Base_V22_Theme_AppCompat_Light=0x7f090075;
+ public static final int Base_V23_Theme_AppCompat=0x7f090077;
+ public static final int Base_V23_Theme_AppCompat_Light=0x7f090078;
+ public static final int Base_V7_Theme_AppCompat=0x7f090096;
+ public static final int Base_V7_Theme_AppCompat_Dialog=0x7f090097;
+ public static final int Base_V7_Theme_AppCompat_Light=0x7f090098;
+ public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f090099;
+ public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f09009a;
+ public static final int Base_V7_Widget_AppCompat_EditText=0x7f09009b;
+ public static final int Base_Widget_AppCompat_ActionBar=0x7f09009c;
+ public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f09009d;
+ public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f09009e;
+ public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f090054;
+ public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f090055;
+ public static final int Base_Widget_AppCompat_ActionButton=0x7f090056;
+ public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f090057;
+ public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f090058;
+ public static final int Base_Widget_AppCompat_ActionMode=0x7f09009f;
+ public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900a0;
+ public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f090016;
+ public static final int Base_Widget_AppCompat_Button=0x7f090059;
+ public static final int Base_Widget_AppCompat_Button_Borderless=0x7f09005a;
+ public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f09005b;
+ public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900a1;
+ public static final int Base_Widget_AppCompat_Button_Colored=0x7f090079;
+ public static final int Base_Widget_AppCompat_Button_Small=0x7f09005c;
+ public static final int Base_Widget_AppCompat_ButtonBar=0x7f09005d;
+ public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900a2;
+ public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f09005e;
+ public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f09005f;
+ public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900a3;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090000;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900a4;
+ public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090060;
+ public static final int Base_Widget_AppCompat_EditText=0x7f090017;
+ public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900a5;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900a6;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900a7;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090061;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090062;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f090063;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f090064;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090065;
+ public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f090066;
+ public static final int Base_Widget_AppCompat_ListView=0x7f090067;
+ public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f090068;
+ public static final int Base_Widget_AppCompat_ListView_Menu=0x7f090069;
+ public static final int Base_Widget_AppCompat_PopupMenu=0x7f09006a;
+ public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f09006b;
+ public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900a8;
+ public static final int Base_Widget_AppCompat_ProgressBar=0x7f09000d;
+ public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f09000e;
+ public static final int Base_Widget_AppCompat_RatingBar=0x7f09006c;
+ public static final int Base_Widget_AppCompat_SearchView=0x7f0900a9;
+ public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900aa;
+ public static final int Base_Widget_AppCompat_Spinner=0x7f09006d;
+ public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f09006e;
+ public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f09006f;
+ public static final int Base_Widget_AppCompat_Toolbar=0x7f0900ab;
+ public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090070;
+ public static final int CalendarDatePickerDialog=0x7f0900ac;
+ public static final int CalendarDatePickerStyle=0x7f0900ad;
+ public static final int ClockTimePickerDialog=0x7f0900ae;
+ public static final int ClockTimePickerStyle=0x7f0900af;
+ public static final int DialogAnimationFade=0x7f0900b0;
+ public static final int DialogAnimationSlide=0x7f0900b1;
+ public static final int Platform_AppCompat=0x7f09000f;
+ public static final int Platform_AppCompat_Light=0x7f090010;
+ public static final int Platform_ThemeOverlay_AppCompat=0x7f090071;
+ public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f090072;
+ public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f090073;
+ public static final int Platform_V11_AppCompat=0x7f090011;
+ public static final int Platform_V11_AppCompat_Light=0x7f090012;
+ public static final int Platform_V14_AppCompat=0x7f090019;
+ public static final int Platform_V14_AppCompat_Light=0x7f09001a;
+ public static final int Platform_Widget_AppCompat_Spinner=0x7f090013;
+ public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090020;
+ public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090021;
+ public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f090022;
+ public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090023;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f090024;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090025;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090026;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f090027;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090028;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f090029;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f09002a;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f09002b;
+ public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f09002c;
+ public static final int SpinnerDatePickerDialog=0x7f0900b2;
+ public static final int SpinnerDatePickerStyle=0x7f0900b3;
+ public static final int SpinnerTimePickerDialog=0x7f0900b4;
+ public static final int SpinnerTimePickerStyle=0x7f0900b5;
+ public static final int TextAppearance_AppCompat=0x7f0900b6;
+ public static final int TextAppearance_AppCompat_Body1=0x7f0900b7;
+ public static final int TextAppearance_AppCompat_Body2=0x7f0900b8;
+ public static final int TextAppearance_AppCompat_Button=0x7f0900b9;
+ public static final int TextAppearance_AppCompat_Caption=0x7f0900ba;
+ public static final int TextAppearance_AppCompat_Display1=0x7f0900bb;
+ public static final int TextAppearance_AppCompat_Display2=0x7f0900bc;
+ public static final int TextAppearance_AppCompat_Display3=0x7f0900bd;
+ public static final int TextAppearance_AppCompat_Display4=0x7f0900be;
+ public static final int TextAppearance_AppCompat_Headline=0x7f0900bf;
+ public static final int TextAppearance_AppCompat_Inverse=0x7f0900c0;
+ public static final int TextAppearance_AppCompat_Large=0x7f0900c1;
+ public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900c2;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900c3;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900c4;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900c5;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900c6;
+ public static final int TextAppearance_AppCompat_Medium=0x7f0900c7;
+ public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900c8;
+ public static final int TextAppearance_AppCompat_Menu=0x7f0900c9;
+ public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900ca;
+ public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900cb;
+ public static final int TextAppearance_AppCompat_Small=0x7f0900cc;
+ public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900cd;
+ public static final int TextAppearance_AppCompat_Subhead=0x7f0900ce;
+ public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900cf;
+ public static final int TextAppearance_AppCompat_Title=0x7f0900d0;
+ public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900d1;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900d2;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900d3;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900d4;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900d5;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900d6;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900d7;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900d8;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900d9;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900da;
+ public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900db;
+ public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900dc;
+ public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900dd;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0900de;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0900df;
+ public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0900e0;
+ public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0900e1;
+ public static final int TextAppearance_StatusBar_EventContent=0x7f09001b;
+ public static final int TextAppearance_StatusBar_EventContent_Info=0x7f09001c;
+ public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f09001d;
+ public static final int TextAppearance_StatusBar_EventContent_Time=0x7f09001e;
+ public static final int TextAppearance_StatusBar_EventContent_Title=0x7f09001f;
+ public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900e2;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0900e3;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0900e4;
+ public static final int Theme=0x7f0900e5;
+ public static final int Theme_AppCompat=0x7f0900e6;
+ public static final int Theme_AppCompat_CompactMenu=0x7f0900e7;
+ public static final int Theme_AppCompat_Dialog=0x7f0900e8;
+ public static final int Theme_AppCompat_Dialog_Alert=0x7f0900e9;
+ public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0900ea;
+ public static final int Theme_AppCompat_DialogWhenLarge=0x7f0900eb;
+ public static final int Theme_AppCompat_Light=0x7f0900ec;
+ public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0900ed;
+ public static final int Theme_AppCompat_Light_Dialog=0x7f0900ee;
+ public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0900ef;
+ public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900f0;
+ public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0900f1;
+ public static final int Theme_AppCompat_Light_NoActionBar=0x7f0900f2;
+ public static final int Theme_AppCompat_NoActionBar=0x7f0900f3;
+ public static final int Theme_Catalyst=0x7f0900f4;
+ public static final int Theme_Catalyst_RedBox=0x7f0900f5;
+ public static final int Theme_FullScreenDialog=0x7f0900f6;
+ public static final int Theme_FullScreenDialogAnimatedFade=0x7f0900f7;
+ public static final int Theme_FullScreenDialogAnimatedSlide=0x7f0900f8;
+ public static final int Theme_ReactNative_AppCompat_Light=0x7f0900f9;
+ public static final int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen=0x7f0900fa;
+ public static final int ThemeOverlay_AppCompat=0x7f0900fb;
+ public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0900fc;
+ public static final int ThemeOverlay_AppCompat_Dark=0x7f0900fd;
+ public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900fe;
+ public static final int ThemeOverlay_AppCompat_Light=0x7f0900ff;
+ public static final int Widget_AppCompat_ActionBar=0x7f090100;
+ public static final int Widget_AppCompat_ActionBar_Solid=0x7f090101;
+ public static final int Widget_AppCompat_ActionBar_TabBar=0x7f090102;
+ public static final int Widget_AppCompat_ActionBar_TabText=0x7f090103;
+ public static final int Widget_AppCompat_ActionBar_TabView=0x7f090104;
+ public static final int Widget_AppCompat_ActionButton=0x7f090105;
+ public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f090106;
+ public static final int Widget_AppCompat_ActionButton_Overflow=0x7f090107;
+ public static final int Widget_AppCompat_ActionMode=0x7f090108;
+ public static final int Widget_AppCompat_ActivityChooserView=0x7f090109;
+ public static final int Widget_AppCompat_AutoCompleteTextView=0x7f09010a;
+ public static final int Widget_AppCompat_Button=0x7f09010b;
+ public static final int Widget_AppCompat_Button_Borderless=0x7f09010c;
+ public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f09010d;
+ public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f09010e;
+ public static final int Widget_AppCompat_Button_Colored=0x7f09010f;
+ public static final int Widget_AppCompat_Button_Small=0x7f090110;
+ public static final int Widget_AppCompat_ButtonBar=0x7f090111;
+ public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f090112;
+ public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f090113;
+ public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f090114;
+ public static final int Widget_AppCompat_CompoundButton_Switch=0x7f090115;
+ public static final int Widget_AppCompat_DrawerArrowToggle=0x7f090116;
+ public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f090117;
+ public static final int Widget_AppCompat_EditText=0x7f090118;
+ public static final int Widget_AppCompat_Light_ActionBar=0x7f090119;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f09011a;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f09011b;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f09011c;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f09011d;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f09011e;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f09011f;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f090120;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f090121;
+ public static final int Widget_AppCompat_Light_ActionButton=0x7f090122;
+ public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f090123;
+ public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f090124;
+ public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f090125;
+ public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f090126;
+ public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f090127;
+ public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f090128;
+ public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f090129;
+ public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f09012a;
+ public static final int Widget_AppCompat_Light_PopupMenu=0x7f09012b;
+ public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09012c;
+ public static final int Widget_AppCompat_Light_SearchView=0x7f09012d;
+ public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f09012e;
+ public static final int Widget_AppCompat_ListPopupWindow=0x7f09012f;
+ public static final int Widget_AppCompat_ListView=0x7f090130;
+ public static final int Widget_AppCompat_ListView_DropDown=0x7f090131;
+ public static final int Widget_AppCompat_ListView_Menu=0x7f090132;
+ public static final int Widget_AppCompat_PopupMenu=0x7f090133;
+ public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f090134;
+ public static final int Widget_AppCompat_PopupWindow=0x7f090135;
+ public static final int Widget_AppCompat_ProgressBar=0x7f090136;
+ public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f090137;
+ public static final int Widget_AppCompat_RatingBar=0x7f090138;
+ public static final int Widget_AppCompat_SearchView=0x7f090139;
+ public static final int Widget_AppCompat_SearchView_ActionBar=0x7f09013a;
+ public static final int Widget_AppCompat_Spinner=0x7f09013b;
+ public static final int Widget_AppCompat_Spinner_DropDown=0x7f09013c;
+ public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f09013d;
+ public static final int Widget_AppCompat_Spinner_Underlined=0x7f09013e;
+ public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f09013f;
+ public static final int Widget_AppCompat_Toolbar=0x7f090140;
+ public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f090141;
+ public static final int redboxButton=0x7f090142;
+ }
+ public static final class xml {
+ public static final int preferences=0x7f060000;
+ }
+ public static final class styleable {
+ /** Attributes that can be used with a ActionBar.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #ActionBar_background com.rntest:background}
+ {@link #ActionBar_backgroundSplit com.rntest:backgroundSplit}
+ {@link #ActionBar_backgroundStacked com.rntest:backgroundStacked}
+ {@link #ActionBar_contentInsetEnd com.rntest:contentInsetEnd}
+ {@link #ActionBar_contentInsetLeft com.rntest:contentInsetLeft}
+ {@link #ActionBar_contentInsetRight com.rntest:contentInsetRight}
+ {@link #ActionBar_contentInsetStart com.rntest:contentInsetStart}
+ {@link #ActionBar_customNavigationLayout com.rntest:customNavigationLayout}
+ {@link #ActionBar_displayOptions com.rntest:displayOptions}
+ {@link #ActionBar_divider com.rntest:divider}
+ {@link #ActionBar_elevation com.rntest:elevation}
+ {@link #ActionBar_height com.rntest:height}
+ {@link #ActionBar_hideOnContentScroll com.rntest:hideOnContentScroll}
+ {@link #ActionBar_homeAsUpIndicator com.rntest:homeAsUpIndicator}
+ {@link #ActionBar_homeLayout com.rntest:homeLayout}
+ {@link #ActionBar_icon com.rntest:icon}
+ {@link #ActionBar_indeterminateProgressStyle com.rntest:indeterminateProgressStyle}
+ {@link #ActionBar_itemPadding com.rntest:itemPadding}
+ {@link #ActionBar_logo com.rntest:logo}
+ {@link #ActionBar_navigationMode com.rntest:navigationMode}
+ {@link #ActionBar_popupTheme com.rntest:popupTheme}
+ {@link #ActionBar_progressBarPadding com.rntest:progressBarPadding}
+ {@link #ActionBar_progressBarStyle com.rntest:progressBarStyle}
+ {@link #ActionBar_subtitle com.rntest:subtitle}
+ {@link #ActionBar_subtitleTextStyle com.rntest:subtitleTextStyle}
+ {@link #ActionBar_title com.rntest:title}
+ {@link #ActionBar_titleTextStyle com.rntest:titleTextStyle}
+
+ @see #ActionBar_background
+ @see #ActionBar_backgroundSplit
+ @see #ActionBar_backgroundStacked
+ @see #ActionBar_contentInsetEnd
+ @see #ActionBar_contentInsetLeft
+ @see #ActionBar_contentInsetRight
+ @see #ActionBar_contentInsetStart
+ @see #ActionBar_customNavigationLayout
+ @see #ActionBar_displayOptions
+ @see #ActionBar_divider
+ @see #ActionBar_elevation
+ @see #ActionBar_height
+ @see #ActionBar_hideOnContentScroll
+ @see #ActionBar_homeAsUpIndicator
+ @see #ActionBar_homeLayout
+ @see #ActionBar_icon
+ @see #ActionBar_indeterminateProgressStyle
+ @see #ActionBar_itemPadding
+ @see #ActionBar_logo
+ @see #ActionBar_navigationMode
+ @see #ActionBar_popupTheme
+ @see #ActionBar_progressBarPadding
+ @see #ActionBar_progressBarStyle
+ @see #ActionBar_subtitle
+ @see #ActionBar_subtitleTextStyle
+ @see #ActionBar_title
+ @see #ActionBar_titleTextStyle
+ */
+ public static final int[] ActionBar = {
+ 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005,
+ 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009,
+ 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d,
+ 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011,
+ 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015,
+ 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019,
+ 0x7f01001a, 0x7f01001b, 0x7f010096
+ };
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#background}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:background
+ */
+ public static final int ActionBar_background = 10;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#backgroundSplit}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ @attr name com.rntest:backgroundSplit
+ */
+ public static final int ActionBar_backgroundSplit = 12;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#backgroundStacked}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ @attr name com.rntest:backgroundStacked
+ */
+ public static final int ActionBar_backgroundStacked = 11;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#contentInsetEnd}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:contentInsetEnd
+ */
+ public static final int ActionBar_contentInsetEnd = 21;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#contentInsetLeft}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:contentInsetLeft
+ */
+ public static final int ActionBar_contentInsetLeft = 22;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#contentInsetRight}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:contentInsetRight
+ */
+ public static final int ActionBar_contentInsetRight = 23;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#contentInsetStart}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:contentInsetStart
+ */
+ public static final int ActionBar_contentInsetStart = 20;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#customNavigationLayout}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:customNavigationLayout
+ */
+ public static final int ActionBar_customNavigationLayout = 13;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#displayOptions}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+Constant Value Description
+none
0
+useLogo
0x1
+showHome
0x2
+homeAsUp
0x4
+showTitle
0x8
+showCustom
0x10
+disableHome
0x20
+
+ @attr name com.rntest:displayOptions
+ */
+ public static final int ActionBar_displayOptions = 3;
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#divider}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:divider
+ */
+ public static final int ActionBar_divider = 9;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#elevation}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:elevation
+ */
+ public static final int ActionBar_elevation = 24;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#height}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:height
+ */
+ public static final int ActionBar_height = 0;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#hideOnContentScroll}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:hideOnContentScroll
+ */
+ public static final int ActionBar_hideOnContentScroll = 19;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#homeAsUpIndicator}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:homeAsUpIndicator
+ */
+ public static final int ActionBar_homeAsUpIndicator = 26;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#homeLayout}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:homeLayout
+ */
+ public static final int ActionBar_homeLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#icon}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:icon
+ */
+ public static final int ActionBar_icon = 7;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#indeterminateProgressStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:indeterminateProgressStyle
+ */
+ public static final int ActionBar_indeterminateProgressStyle = 16;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#itemPadding}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:itemPadding
+ */
+ public static final int ActionBar_itemPadding = 18;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#logo}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:logo
+ */
+ public static final int ActionBar_logo = 8;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#navigationMode}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+normal
0
+listMode
1
+tabMode
2
+
+ @attr name com.rntest:navigationMode
+ */
+ public static final int ActionBar_navigationMode = 2;
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#popupTheme}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:popupTheme
+ */
+ public static final int ActionBar_popupTheme = 25;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#progressBarPadding}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:progressBarPadding
+ */
+ public static final int ActionBar_progressBarPadding = 17;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#progressBarStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:progressBarStyle
+ */
+ public static final int ActionBar_progressBarStyle = 15;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#subtitle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:subtitle
+ */
+ public static final int ActionBar_subtitle = 4;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#subtitleTextStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:subtitleTextStyle
+ */
+ public static final int ActionBar_subtitleTextStyle = 6;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#title}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:title
+ */
+ public static final int ActionBar_title = 1;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#titleTextStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:titleTextStyle
+ */
+ public static final int ActionBar_titleTextStyle = 5;
+ /** Attributes that can be used with a ActionBarLayout.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+
+ @see #ActionBarLayout_android_layout_gravity
+ */
+ public static final int[] ActionBarLayout = {
+ 0x010100b3
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #ActionBarLayout} array.
+ @attr name android:layout_gravity
+ */
+ public static final int ActionBarLayout_android_layout_gravity = 0;
+ /** Attributes that can be used with a ActionMenuItemView.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #ActionMenuItemView_android_minWidth android:minWidth}
+
+ @see #ActionMenuItemView_android_minWidth
+ */
+ public static final int[] ActionMenuItemView = {
+ 0x0101013f
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#minWidth}
+ attribute's value can be found in the {@link #ActionMenuItemView} array.
+ @attr name android:minWidth
+ */
+ public static final int ActionMenuItemView_android_minWidth = 0;
+ /** Attributes that can be used with a ActionMenuView.
+ */
+ public static final int[] ActionMenuView = {
+
+ };
+ /** Attributes that can be used with a ActionMode.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #ActionMode_background com.rntest:background}
+ {@link #ActionMode_backgroundSplit com.rntest:backgroundSplit}
+ {@link #ActionMode_closeItemLayout com.rntest:closeItemLayout}
+ {@link #ActionMode_height com.rntest:height}
+ {@link #ActionMode_subtitleTextStyle com.rntest:subtitleTextStyle}
+ {@link #ActionMode_titleTextStyle com.rntest:titleTextStyle}
+
+ @see #ActionMode_background
+ @see #ActionMode_backgroundSplit
+ @see #ActionMode_closeItemLayout
+ @see #ActionMode_height
+ @see #ActionMode_subtitleTextStyle
+ @see #ActionMode_titleTextStyle
+ */
+ public static final int[] ActionMode = {
+ 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c,
+ 0x7f01000e, 0x7f01001c
+ };
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#background}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:background
+ */
+ public static final int ActionMode_background = 3;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#backgroundSplit}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ @attr name com.rntest:backgroundSplit
+ */
+ public static final int ActionMode_backgroundSplit = 4;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#closeItemLayout}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:closeItemLayout
+ */
+ public static final int ActionMode_closeItemLayout = 5;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#height}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:height
+ */
+ public static final int ActionMode_height = 0;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#subtitleTextStyle}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:subtitleTextStyle
+ */
+ public static final int ActionMode_subtitleTextStyle = 2;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#titleTextStyle}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:titleTextStyle
+ */
+ public static final int ActionMode_titleTextStyle = 1;
+ /** Attributes that can be used with a ActivityChooserView.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.rntest:expandActivityOverflowButtonDrawable}
+ {@link #ActivityChooserView_initialActivityCount com.rntest:initialActivityCount}
+
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable
+ @see #ActivityChooserView_initialActivityCount
+ */
+ public static final int[] ActivityChooserView = {
+ 0x7f01001d, 0x7f01001e
+ };
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#expandActivityOverflowButtonDrawable}
+ attribute's value can be found in the {@link #ActivityChooserView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:expandActivityOverflowButtonDrawable
+ */
+ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#initialActivityCount}
+ attribute's value can be found in the {@link #ActivityChooserView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:initialActivityCount
+ */
+ public static final int ActivityChooserView_initialActivityCount = 0;
+ /** Attributes that can be used with a AlertDialog.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #AlertDialog_android_layout android:layout}
+ {@link #AlertDialog_buttonPanelSideLayout com.rntest:buttonPanelSideLayout}
+ {@link #AlertDialog_listItemLayout com.rntest:listItemLayout}
+ {@link #AlertDialog_listLayout com.rntest:listLayout}
+ {@link #AlertDialog_multiChoiceItemLayout com.rntest:multiChoiceItemLayout}
+ {@link #AlertDialog_singleChoiceItemLayout com.rntest:singleChoiceItemLayout}
+
+ @see #AlertDialog_android_layout
+ @see #AlertDialog_buttonPanelSideLayout
+ @see #AlertDialog_listItemLayout
+ @see #AlertDialog_listLayout
+ @see #AlertDialog_multiChoiceItemLayout
+ @see #AlertDialog_singleChoiceItemLayout
+ */
+ public static final int[] AlertDialog = {
+ 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021,
+ 0x7f010022, 0x7f010023
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#layout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+ @attr name android:layout
+ */
+ public static final int AlertDialog_android_layout = 0;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#buttonPanelSideLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:buttonPanelSideLayout
+ */
+ public static final int AlertDialog_buttonPanelSideLayout = 1;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#listItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:listItemLayout
+ */
+ public static final int AlertDialog_listItemLayout = 5;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#listLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:listLayout
+ */
+ public static final int AlertDialog_listLayout = 2;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#multiChoiceItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:multiChoiceItemLayout
+ */
+ public static final int AlertDialog_multiChoiceItemLayout = 3;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#singleChoiceItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:singleChoiceItemLayout
+ */
+ public static final int AlertDialog_singleChoiceItemLayout = 4;
+ /** Attributes that can be used with a AppCompatTextView.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #AppCompatTextView_android_textAppearance android:textAppearance}
+ {@link #AppCompatTextView_textAllCaps com.rntest:textAllCaps}
+
+ @see #AppCompatTextView_android_textAppearance
+ @see #AppCompatTextView_textAllCaps
+ */
+ public static final int[] AppCompatTextView = {
+ 0x01010034, 0x7f010024
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#textAppearance}
+ attribute's value can be found in the {@link #AppCompatTextView} array.
+ @attr name android:textAppearance
+ */
+ public static final int AppCompatTextView_android_textAppearance = 0;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#textAllCaps}
+ attribute's value can be found in the {@link #AppCompatTextView} array.
+
+
+
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a boolean value, either "true
" or "false
".
+ @attr name com.rntest:textAllCaps
+ */
+ public static final int AppCompatTextView_textAllCaps = 1;
+ /** Attributes that can be used with a CompoundButton.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #CompoundButton_android_button android:button}
+ {@link #CompoundButton_buttonTint com.rntest:buttonTint}
+ {@link #CompoundButton_buttonTintMode com.rntest:buttonTintMode}
+
+ @see #CompoundButton_android_button
+ @see #CompoundButton_buttonTint
+ @see #CompoundButton_buttonTintMode
+ */
+ public static final int[] CompoundButton = {
+ 0x01010107, 0x7f010025, 0x7f010026
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#button}
+ attribute's value can be found in the {@link #CompoundButton} array.
+ @attr name android:button
+ */
+ public static final int CompoundButton_android_button = 0;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#buttonTint}
+ attribute's value can be found in the {@link #CompoundButton} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:buttonTint
+ */
+ public static final int CompoundButton_buttonTint = 1;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#buttonTintMode}
+ attribute's value can be found in the {@link #CompoundButton} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+src_over
3
+src_in
5
+src_atop
9
+multiply
14
+screen
15
+
+ @attr name com.rntest:buttonTintMode
+ */
+ public static final int CompoundButton_buttonTintMode = 2;
+ /** Attributes that can be used with a DrawerArrowToggle.
+ Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #DrawerArrowToggle_arrowHeadLength com.rntest:arrowHeadLength}
+ {@link #DrawerArrowToggle_arrowShaftLength com.rntest:arrowShaftLength}
+ {@link #DrawerArrowToggle_barLength com.rntest:barLength}
+ {@link #DrawerArrowToggle_color com.rntest:color}
+ {@link #DrawerArrowToggle_drawableSize com.rntest:drawableSize}
+ {@link #DrawerArrowToggle_gapBetweenBars com.rntest:gapBetweenBars}
+ {@link #DrawerArrowToggle_spinBars com.rntest:spinBars}
+ {@link #DrawerArrowToggle_thickness com.rntest:thickness}
+
+ @see #DrawerArrowToggle_arrowHeadLength
+ @see #DrawerArrowToggle_arrowShaftLength
+ @see #DrawerArrowToggle_barLength
+ @see #DrawerArrowToggle_color
+ @see #DrawerArrowToggle_drawableSize
+ @see #DrawerArrowToggle_gapBetweenBars
+ @see #DrawerArrowToggle_spinBars
+ @see #DrawerArrowToggle_thickness
+ */
+ public static final int[] DrawerArrowToggle = {
+ 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a,
+ 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e
+ };
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#arrowHeadLength}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:arrowHeadLength
+ */
+ public static final int DrawerArrowToggle_arrowHeadLength = 4;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#arrowShaftLength}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:arrowShaftLength
+ */
+ public static final int DrawerArrowToggle_arrowShaftLength = 5;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#barLength}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:barLength
+ */
+ public static final int DrawerArrowToggle_barLength = 6;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#color}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:color
+ */
+ public static final int DrawerArrowToggle_color = 0;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#drawableSize}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:drawableSize
+ */
+ public static final int DrawerArrowToggle_drawableSize = 2;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#gapBetweenBars}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:gapBetweenBars
+ */
+ public static final int DrawerArrowToggle_gapBetweenBars = 3;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#spinBars}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:spinBars
+ */
+ public static final int DrawerArrowToggle_spinBars = 1;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#thickness}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:thickness
+ */
+ public static final int DrawerArrowToggle_thickness = 7;
+ /** Attributes that can be used with a GenericDraweeHierarchy.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #GenericDraweeHierarchy_actualImageScaleType com.rntest:actualImageScaleType}
+ {@link #GenericDraweeHierarchy_backgroundImage com.rntest:backgroundImage}
+ {@link #GenericDraweeHierarchy_fadeDuration com.rntest:fadeDuration}
+ {@link #GenericDraweeHierarchy_failureImage com.rntest:failureImage}
+ {@link #GenericDraweeHierarchy_failureImageScaleType com.rntest:failureImageScaleType}
+ {@link #GenericDraweeHierarchy_overlayImage com.rntest:overlayImage}
+ {@link #GenericDraweeHierarchy_placeholderImage com.rntest:placeholderImage}
+ {@link #GenericDraweeHierarchy_placeholderImageScaleType com.rntest:placeholderImageScaleType}
+ {@link #GenericDraweeHierarchy_pressedStateOverlayImage com.rntest:pressedStateOverlayImage}
+ {@link #GenericDraweeHierarchy_progressBarAutoRotateInterval com.rntest:progressBarAutoRotateInterval}
+ {@link #GenericDraweeHierarchy_progressBarImage com.rntest:progressBarImage}
+ {@link #GenericDraweeHierarchy_progressBarImageScaleType com.rntest:progressBarImageScaleType}
+ {@link #GenericDraweeHierarchy_retryImage com.rntest:retryImage}
+ {@link #GenericDraweeHierarchy_retryImageScaleType com.rntest:retryImageScaleType}
+ {@link #GenericDraweeHierarchy_roundAsCircle com.rntest:roundAsCircle}
+ {@link #GenericDraweeHierarchy_roundBottomLeft com.rntest:roundBottomLeft}
+ {@link #GenericDraweeHierarchy_roundBottomRight com.rntest:roundBottomRight}
+ {@link #GenericDraweeHierarchy_roundTopLeft com.rntest:roundTopLeft}
+ {@link #GenericDraweeHierarchy_roundTopRight com.rntest:roundTopRight}
+ {@link #GenericDraweeHierarchy_roundWithOverlayColor com.rntest:roundWithOverlayColor}
+ {@link #GenericDraweeHierarchy_roundedCornerRadius com.rntest:roundedCornerRadius}
+ {@link #GenericDraweeHierarchy_roundingBorderColor com.rntest:roundingBorderColor}
+ {@link #GenericDraweeHierarchy_roundingBorderPadding com.rntest:roundingBorderPadding}
+ {@link #GenericDraweeHierarchy_roundingBorderWidth com.rntest:roundingBorderWidth}
+ {@link #GenericDraweeHierarchy_viewAspectRatio com.rntest:viewAspectRatio}
+
+ @see #GenericDraweeHierarchy_actualImageScaleType
+ @see #GenericDraweeHierarchy_backgroundImage
+ @see #GenericDraweeHierarchy_fadeDuration
+ @see #GenericDraweeHierarchy_failureImage
+ @see #GenericDraweeHierarchy_failureImageScaleType
+ @see #GenericDraweeHierarchy_overlayImage
+ @see #GenericDraweeHierarchy_placeholderImage
+ @see #GenericDraweeHierarchy_placeholderImageScaleType
+ @see #GenericDraweeHierarchy_pressedStateOverlayImage
+ @see #GenericDraweeHierarchy_progressBarAutoRotateInterval
+ @see #GenericDraweeHierarchy_progressBarImage
+ @see #GenericDraweeHierarchy_progressBarImageScaleType
+ @see #GenericDraweeHierarchy_retryImage
+ @see #GenericDraweeHierarchy_retryImageScaleType
+ @see #GenericDraweeHierarchy_roundAsCircle
+ @see #GenericDraweeHierarchy_roundBottomLeft
+ @see #GenericDraweeHierarchy_roundBottomRight
+ @see #GenericDraweeHierarchy_roundTopLeft
+ @see #GenericDraweeHierarchy_roundTopRight
+ @see #GenericDraweeHierarchy_roundWithOverlayColor
+ @see #GenericDraweeHierarchy_roundedCornerRadius
+ @see #GenericDraweeHierarchy_roundingBorderColor
+ @see #GenericDraweeHierarchy_roundingBorderPadding
+ @see #GenericDraweeHierarchy_roundingBorderWidth
+ @see #GenericDraweeHierarchy_viewAspectRatio
+ */
+ public static final int[] GenericDraweeHierarchy = {
+ 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032,
+ 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036,
+ 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a,
+ 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e,
+ 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042,
+ 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046,
+ 0x7f010047
+ };
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#actualImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+none
-1
+fitXY
0
+fitStart
1
+fitCenter
2
+fitEnd
3
+center
4
+centerInside
5
+centerCrop
6
+focusCrop
7
+
+ @attr name com.rntest:actualImageScaleType
+ */
+ public static final int GenericDraweeHierarchy_actualImageScaleType = 11;
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#backgroundImage}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:backgroundImage
+ */
+ public static final int GenericDraweeHierarchy_backgroundImage = 12;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#fadeDuration}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be an integer value, such as "100
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:fadeDuration
+ */
+ public static final int GenericDraweeHierarchy_fadeDuration = 0;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#failureImage}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:failureImage
+ */
+ public static final int GenericDraweeHierarchy_failureImage = 6;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#failureImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+none
-1
+fitXY
0
+fitStart
1
+fitCenter
2
+fitEnd
3
+center
4
+centerInside
5
+centerCrop
6
+focusCrop
7
+
+ @attr name com.rntest:failureImageScaleType
+ */
+ public static final int GenericDraweeHierarchy_failureImageScaleType = 7;
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#overlayImage}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:overlayImage
+ */
+ public static final int GenericDraweeHierarchy_overlayImage = 13;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#placeholderImage}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:placeholderImage
+ */
+ public static final int GenericDraweeHierarchy_placeholderImage = 2;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#placeholderImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+none
-1
+fitXY
0
+fitStart
1
+fitCenter
2
+fitEnd
3
+center
4
+centerInside
5
+centerCrop
6
+focusCrop
7
+
+ @attr name com.rntest:placeholderImageScaleType
+ */
+ public static final int GenericDraweeHierarchy_placeholderImageScaleType = 3;
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#pressedStateOverlayImage}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:pressedStateOverlayImage
+ */
+ public static final int GenericDraweeHierarchy_pressedStateOverlayImage = 14;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#progressBarAutoRotateInterval}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be an integer value, such as "100
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:progressBarAutoRotateInterval
+ */
+ public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval = 10;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#progressBarImage}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:progressBarImage
+ */
+ public static final int GenericDraweeHierarchy_progressBarImage = 8;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#progressBarImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+none
-1
+fitXY
0
+fitStart
1
+fitCenter
2
+fitEnd
3
+center
4
+centerInside
5
+centerCrop
6
+focusCrop
7
+
+ @attr name com.rntest:progressBarImageScaleType
+ */
+ public static final int GenericDraweeHierarchy_progressBarImageScaleType = 9;
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#retryImage}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:retryImage
+ */
+ public static final int GenericDraweeHierarchy_retryImage = 4;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#retryImageScaleType}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+none
-1
+fitXY
0
+fitStart
1
+fitCenter
2
+fitEnd
3
+center
4
+centerInside
5
+centerCrop
6
+focusCrop
7
+
+ @attr name com.rntest:retryImageScaleType
+ */
+ public static final int GenericDraweeHierarchy_retryImageScaleType = 5;
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#roundAsCircle}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:roundAsCircle
+ */
+ public static final int GenericDraweeHierarchy_roundAsCircle = 15;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#roundBottomLeft}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:roundBottomLeft
+ */
+ public static final int GenericDraweeHierarchy_roundBottomLeft = 20;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#roundBottomRight}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:roundBottomRight
+ */
+ public static final int GenericDraweeHierarchy_roundBottomRight = 19;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#roundTopLeft}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:roundTopLeft
+ */
+ public static final int GenericDraweeHierarchy_roundTopLeft = 17;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#roundTopRight}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:roundTopRight
+ */
+ public static final int GenericDraweeHierarchy_roundTopRight = 18;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#roundWithOverlayColor}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:roundWithOverlayColor
+ */
+ public static final int GenericDraweeHierarchy_roundWithOverlayColor = 21;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#roundedCornerRadius}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:roundedCornerRadius
+ */
+ public static final int GenericDraweeHierarchy_roundedCornerRadius = 16;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#roundingBorderColor}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:roundingBorderColor
+ */
+ public static final int GenericDraweeHierarchy_roundingBorderColor = 23;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#roundingBorderPadding}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:roundingBorderPadding
+ */
+ public static final int GenericDraweeHierarchy_roundingBorderPadding = 24;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#roundingBorderWidth}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:roundingBorderWidth
+ */
+ public static final int GenericDraweeHierarchy_roundingBorderWidth = 22;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#viewAspectRatio}
+ attribute's value can be found in the {@link #GenericDraweeHierarchy} array.
+
+
+
Must be a floating point value, such as "1.2
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:viewAspectRatio
+ */
+ public static final int GenericDraweeHierarchy_viewAspectRatio = 1;
+ /** Attributes that can be used with a LinearLayoutCompat.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
+ {@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
+ {@link #LinearLayoutCompat_android_gravity android:gravity}
+ {@link #LinearLayoutCompat_android_orientation android:orientation}
+ {@link #LinearLayoutCompat_android_weightSum android:weightSum}
+ {@link #LinearLayoutCompat_divider com.rntest:divider}
+ {@link #LinearLayoutCompat_dividerPadding com.rntest:dividerPadding}
+ {@link #LinearLayoutCompat_measureWithLargestChild com.rntest:measureWithLargestChild}
+ {@link #LinearLayoutCompat_showDividers com.rntest:showDividers}
+
+ @see #LinearLayoutCompat_android_baselineAligned
+ @see #LinearLayoutCompat_android_baselineAlignedChildIndex
+ @see #LinearLayoutCompat_android_gravity
+ @see #LinearLayoutCompat_android_orientation
+ @see #LinearLayoutCompat_android_weightSum
+ @see #LinearLayoutCompat_divider
+ @see #LinearLayoutCompat_dividerPadding
+ @see #LinearLayoutCompat_measureWithLargestChild
+ @see #LinearLayoutCompat_showDividers
+ */
+ public static final int[] LinearLayoutCompat = {
+ 0x010100af, 0x010100c4, 0x01010126, 0x01010127,
+ 0x01010128, 0x7f01000b, 0x7f010048, 0x7f010049,
+ 0x7f01004a
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#baselineAligned}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:baselineAligned
+ */
+ public static final int LinearLayoutCompat_android_baselineAligned = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:baselineAlignedChildIndex
+ */
+ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#gravity}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:gravity
+ */
+ public static final int LinearLayoutCompat_android_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orientation}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:orientation
+ */
+ public static final int LinearLayoutCompat_android_orientation = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#weightSum}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:weightSum
+ */
+ public static final int LinearLayoutCompat_android_weightSum = 4;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#divider}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:divider
+ */
+ public static final int LinearLayoutCompat_divider = 5;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#dividerPadding}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:dividerPadding
+ */
+ public static final int LinearLayoutCompat_dividerPadding = 8;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#measureWithLargestChild}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:measureWithLargestChild
+ */
+ public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#showDividers}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+Constant Value Description
+none
0
+beginning
1
+middle
2
+end
4
+
+ @attr name com.rntest:showDividers
+ */
+ public static final int LinearLayoutCompat_showDividers = 7;
+ /** Attributes that can be used with a LinearLayoutCompat_Layout.
+ Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
+ {@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
+ {@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
+ {@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+
+ @see #LinearLayoutCompat_Layout_android_layout_gravity
+ @see #LinearLayoutCompat_Layout_android_layout_height
+ @see #LinearLayoutCompat_Layout_android_layout_weight
+ @see #LinearLayoutCompat_Layout_android_layout_width
+ */
+ public static final int[] LinearLayoutCompat_Layout = {
+ 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_gravity
+ */
+ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_height}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_height
+ */
+ public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_weight}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_weight
+ */
+ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_width}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_width
+ */
+ public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+ /** Attributes that can be used with a ListPopupWindow.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
+ {@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+
+ @see #ListPopupWindow_android_dropDownHorizontalOffset
+ @see #ListPopupWindow_android_dropDownVerticalOffset
+ */
+ public static final int[] ListPopupWindow = {
+ 0x010102ac, 0x010102ad
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
+ attribute's value can be found in the {@link #ListPopupWindow} array.
+ @attr name android:dropDownHorizontalOffset
+ */
+ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
+ attribute's value can be found in the {@link #ListPopupWindow} array.
+ @attr name android:dropDownVerticalOffset
+ */
+ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ /** Attributes that can be used with a MenuGroup.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
+ {@link #MenuGroup_android_enabled android:enabled}
+ {@link #MenuGroup_android_id android:id}
+ {@link #MenuGroup_android_menuCategory android:menuCategory}
+ {@link #MenuGroup_android_orderInCategory android:orderInCategory}
+ {@link #MenuGroup_android_visible android:visible}
+
+ @see #MenuGroup_android_checkableBehavior
+ @see #MenuGroup_android_enabled
+ @see #MenuGroup_android_id
+ @see #MenuGroup_android_menuCategory
+ @see #MenuGroup_android_orderInCategory
+ @see #MenuGroup_android_visible
+ */
+ public static final int[] MenuGroup = {
+ 0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
+ 0x010101df, 0x010101e0
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#checkableBehavior}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:checkableBehavior
+ */
+ public static final int MenuGroup_android_checkableBehavior = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#enabled}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:enabled
+ */
+ public static final int MenuGroup_android_enabled = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:id
+ */
+ public static final int MenuGroup_android_id = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#menuCategory}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:menuCategory
+ */
+ public static final int MenuGroup_android_menuCategory = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orderInCategory}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:orderInCategory
+ */
+ public static final int MenuGroup_android_orderInCategory = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#visible}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:visible
+ */
+ public static final int MenuGroup_android_visible = 2;
+ /** Attributes that can be used with a MenuItem.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #MenuItem_actionLayout com.rntest:actionLayout}
+ {@link #MenuItem_actionProviderClass com.rntest:actionProviderClass}
+ {@link #MenuItem_actionViewClass com.rntest:actionViewClass}
+ {@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
+ {@link #MenuItem_android_checkable android:checkable}
+ {@link #MenuItem_android_checked android:checked}
+ {@link #MenuItem_android_enabled android:enabled}
+ {@link #MenuItem_android_icon android:icon}
+ {@link #MenuItem_android_id android:id}
+ {@link #MenuItem_android_menuCategory android:menuCategory}
+ {@link #MenuItem_android_numericShortcut android:numericShortcut}
+ {@link #MenuItem_android_onClick android:onClick}
+ {@link #MenuItem_android_orderInCategory android:orderInCategory}
+ {@link #MenuItem_android_title android:title}
+ {@link #MenuItem_android_titleCondensed android:titleCondensed}
+ {@link #MenuItem_android_visible android:visible}
+ {@link #MenuItem_showAsAction com.rntest:showAsAction}
+
+ @see #MenuItem_actionLayout
+ @see #MenuItem_actionProviderClass
+ @see #MenuItem_actionViewClass
+ @see #MenuItem_android_alphabeticShortcut
+ @see #MenuItem_android_checkable
+ @see #MenuItem_android_checked
+ @see #MenuItem_android_enabled
+ @see #MenuItem_android_icon
+ @see #MenuItem_android_id
+ @see #MenuItem_android_menuCategory
+ @see #MenuItem_android_numericShortcut
+ @see #MenuItem_android_onClick
+ @see #MenuItem_android_orderInCategory
+ @see #MenuItem_android_title
+ @see #MenuItem_android_titleCondensed
+ @see #MenuItem_android_visible
+ @see #MenuItem_showAsAction
+ */
+ public static final int[] MenuItem = {
+ 0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
+ 0x01010194, 0x010101de, 0x010101df, 0x010101e1,
+ 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
+ 0x0101026f, 0x7f01004b, 0x7f01004c, 0x7f01004d,
+ 0x7f01004e
+ };
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#actionLayout}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionLayout
+ */
+ public static final int MenuItem_actionLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionProviderClass}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:actionProviderClass
+ */
+ public static final int MenuItem_actionProviderClass = 16;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionViewClass}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:actionViewClass
+ */
+ public static final int MenuItem_actionViewClass = 15;
+ /**
+
This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:alphabeticShortcut
+ */
+ public static final int MenuItem_android_alphabeticShortcut = 9;
+ /**
+
This symbol is the offset where the {@link android.R.attr#checkable}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:checkable
+ */
+ public static final int MenuItem_android_checkable = 11;
+ /**
+
This symbol is the offset where the {@link android.R.attr#checked}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:checked
+ */
+ public static final int MenuItem_android_checked = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#enabled}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:enabled
+ */
+ public static final int MenuItem_android_enabled = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#icon}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:icon
+ */
+ public static final int MenuItem_android_icon = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:id
+ */
+ public static final int MenuItem_android_id = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#menuCategory}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:menuCategory
+ */
+ public static final int MenuItem_android_menuCategory = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#numericShortcut}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:numericShortcut
+ */
+ public static final int MenuItem_android_numericShortcut = 10;
+ /**
+
This symbol is the offset where the {@link android.R.attr#onClick}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:onClick
+ */
+ public static final int MenuItem_android_onClick = 12;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orderInCategory}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:orderInCategory
+ */
+ public static final int MenuItem_android_orderInCategory = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#title}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:title
+ */
+ public static final int MenuItem_android_title = 7;
+ /**
+
This symbol is the offset where the {@link android.R.attr#titleCondensed}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:titleCondensed
+ */
+ public static final int MenuItem_android_titleCondensed = 8;
+ /**
+
This symbol is the offset where the {@link android.R.attr#visible}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:visible
+ */
+ public static final int MenuItem_android_visible = 4;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#showAsAction}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+Constant Value Description
+never
0
+ifRoom
1
+always
2
+withText
4
+collapseActionView
8
+
+ @attr name com.rntest:showAsAction
+ */
+ public static final int MenuItem_showAsAction = 13;
+ /** Attributes that can be used with a MenuView.
+ Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #MenuView_android_headerBackground android:headerBackground}
+ {@link #MenuView_android_horizontalDivider android:horizontalDivider}
+ {@link #MenuView_android_itemBackground android:itemBackground}
+ {@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
+ {@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
+ {@link #MenuView_android_verticalDivider android:verticalDivider}
+ {@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
+ {@link #MenuView_preserveIconSpacing com.rntest:preserveIconSpacing}
+
+ @see #MenuView_android_headerBackground
+ @see #MenuView_android_horizontalDivider
+ @see #MenuView_android_itemBackground
+ @see #MenuView_android_itemIconDisabledAlpha
+ @see #MenuView_android_itemTextAppearance
+ @see #MenuView_android_verticalDivider
+ @see #MenuView_android_windowAnimationStyle
+ @see #MenuView_preserveIconSpacing
+ */
+ public static final int[] MenuView = {
+ 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
+ 0x0101012f, 0x01010130, 0x01010131, 0x7f01004f
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#headerBackground}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:headerBackground
+ */
+ public static final int MenuView_android_headerBackground = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#horizontalDivider}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:horizontalDivider
+ */
+ public static final int MenuView_android_horizontalDivider = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemBackground}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemBackground
+ */
+ public static final int MenuView_android_itemBackground = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemIconDisabledAlpha
+ */
+ public static final int MenuView_android_itemIconDisabledAlpha = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemTextAppearance
+ */
+ public static final int MenuView_android_itemTextAppearance = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#verticalDivider}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:verticalDivider
+ */
+ public static final int MenuView_android_verticalDivider = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:windowAnimationStyle
+ */
+ public static final int MenuView_android_windowAnimationStyle = 0;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#preserveIconSpacing}
+ attribute's value can be found in the {@link #MenuView} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:preserveIconSpacing
+ */
+ public static final int MenuView_preserveIconSpacing = 7;
+ /** Attributes that can be used with a PopupWindow.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #PopupWindow_android_popupBackground android:popupBackground}
+ {@link #PopupWindow_overlapAnchor com.rntest:overlapAnchor}
+
+ @see #PopupWindow_android_popupBackground
+ @see #PopupWindow_overlapAnchor
+ */
+ public static final int[] PopupWindow = {
+ 0x01010176, 0x7f010050
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#popupBackground}
+ attribute's value can be found in the {@link #PopupWindow} array.
+ @attr name android:popupBackground
+ */
+ public static final int PopupWindow_android_popupBackground = 0;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#overlapAnchor}
+ attribute's value can be found in the {@link #PopupWindow} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:overlapAnchor
+ */
+ public static final int PopupWindow_overlapAnchor = 1;
+ /** Attributes that can be used with a PopupWindowBackgroundState.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #PopupWindowBackgroundState_state_above_anchor com.rntest:state_above_anchor}
+
+ @see #PopupWindowBackgroundState_state_above_anchor
+ */
+ public static final int[] PopupWindowBackgroundState = {
+ 0x7f010051
+ };
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#state_above_anchor}
+ attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:state_above_anchor
+ */
+ public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+ /** Attributes that can be used with a SearchView.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #SearchView_android_focusable android:focusable}
+ {@link #SearchView_android_imeOptions android:imeOptions}
+ {@link #SearchView_android_inputType android:inputType}
+ {@link #SearchView_android_maxWidth android:maxWidth}
+ {@link #SearchView_closeIcon com.rntest:closeIcon}
+ {@link #SearchView_commitIcon com.rntest:commitIcon}
+ {@link #SearchView_defaultQueryHint com.rntest:defaultQueryHint}
+ {@link #SearchView_goIcon com.rntest:goIcon}
+ {@link #SearchView_iconifiedByDefault com.rntest:iconifiedByDefault}
+ {@link #SearchView_layout com.rntest:layout}
+ {@link #SearchView_queryBackground com.rntest:queryBackground}
+ {@link #SearchView_queryHint com.rntest:queryHint}
+ {@link #SearchView_searchHintIcon com.rntest:searchHintIcon}
+ {@link #SearchView_searchIcon com.rntest:searchIcon}
+ {@link #SearchView_submitBackground com.rntest:submitBackground}
+ {@link #SearchView_suggestionRowLayout com.rntest:suggestionRowLayout}
+ {@link #SearchView_voiceIcon com.rntest:voiceIcon}
+
+ @see #SearchView_android_focusable
+ @see #SearchView_android_imeOptions
+ @see #SearchView_android_inputType
+ @see #SearchView_android_maxWidth
+ @see #SearchView_closeIcon
+ @see #SearchView_commitIcon
+ @see #SearchView_defaultQueryHint
+ @see #SearchView_goIcon
+ @see #SearchView_iconifiedByDefault
+ @see #SearchView_layout
+ @see #SearchView_queryBackground
+ @see #SearchView_queryHint
+ @see #SearchView_searchHintIcon
+ @see #SearchView_searchIcon
+ @see #SearchView_submitBackground
+ @see #SearchView_suggestionRowLayout
+ @see #SearchView_voiceIcon
+ */
+ public static final int[] SearchView = {
+ 0x010100da, 0x0101011f, 0x01010220, 0x01010264,
+ 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055,
+ 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059,
+ 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d,
+ 0x7f01005e
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#focusable}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:focusable
+ */
+ public static final int SearchView_android_focusable = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#imeOptions}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:imeOptions
+ */
+ public static final int SearchView_android_imeOptions = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#inputType}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:inputType
+ */
+ public static final int SearchView_android_inputType = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#maxWidth}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:maxWidth
+ */
+ public static final int SearchView_android_maxWidth = 1;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#closeIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:closeIcon
+ */
+ public static final int SearchView_closeIcon = 8;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#commitIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:commitIcon
+ */
+ public static final int SearchView_commitIcon = 13;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#defaultQueryHint}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:defaultQueryHint
+ */
+ public static final int SearchView_defaultQueryHint = 7;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#goIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:goIcon
+ */
+ public static final int SearchView_goIcon = 9;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#iconifiedByDefault}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:iconifiedByDefault
+ */
+ public static final int SearchView_iconifiedByDefault = 5;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#layout}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:layout
+ */
+ public static final int SearchView_layout = 4;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#queryBackground}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:queryBackground
+ */
+ public static final int SearchView_queryBackground = 15;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#queryHint}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:queryHint
+ */
+ public static final int SearchView_queryHint = 6;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#searchHintIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:searchHintIcon
+ */
+ public static final int SearchView_searchHintIcon = 11;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#searchIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:searchIcon
+ */
+ public static final int SearchView_searchIcon = 10;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#submitBackground}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:submitBackground
+ */
+ public static final int SearchView_submitBackground = 16;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#suggestionRowLayout}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:suggestionRowLayout
+ */
+ public static final int SearchView_suggestionRowLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#voiceIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:voiceIcon
+ */
+ public static final int SearchView_voiceIcon = 12;
+ /** Attributes that can be used with a SimpleDraweeView.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #SimpleDraweeView_actualImageResource com.rntest:actualImageResource}
+ {@link #SimpleDraweeView_actualImageUri com.rntest:actualImageUri}
+
+ @see #SimpleDraweeView_actualImageResource
+ @see #SimpleDraweeView_actualImageUri
+ */
+ public static final int[] SimpleDraweeView = {
+ 0x7f01005f, 0x7f010060
+ };
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#actualImageResource}
+ attribute's value can be found in the {@link #SimpleDraweeView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actualImageResource
+ */
+ public static final int SimpleDraweeView_actualImageResource = 1;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actualImageUri}
+ attribute's value can be found in the {@link #SimpleDraweeView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:actualImageUri
+ */
+ public static final int SimpleDraweeView_actualImageUri = 0;
+ /** Attributes that can be used with a Spinner.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #Spinner_android_dropDownWidth android:dropDownWidth}
+ {@link #Spinner_android_popupBackground android:popupBackground}
+ {@link #Spinner_android_prompt android:prompt}
+ {@link #Spinner_popupTheme com.rntest:popupTheme}
+
+ @see #Spinner_android_dropDownWidth
+ @see #Spinner_android_popupBackground
+ @see #Spinner_android_prompt
+ @see #Spinner_popupTheme
+ */
+ public static final int[] Spinner = {
+ 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#dropDownWidth}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:dropDownWidth
+ */
+ public static final int Spinner_android_dropDownWidth = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#popupBackground}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:popupBackground
+ */
+ public static final int Spinner_android_popupBackground = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#prompt}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:prompt
+ */
+ public static final int Spinner_android_prompt = 1;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#popupTheme}
+ attribute's value can be found in the {@link #Spinner} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:popupTheme
+ */
+ public static final int Spinner_popupTheme = 3;
+ /** Attributes that can be used with a SwitchCompat.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #SwitchCompat_android_textOff android:textOff}
+ {@link #SwitchCompat_android_textOn android:textOn}
+ {@link #SwitchCompat_android_thumb android:thumb}
+ {@link #SwitchCompat_showText com.rntest:showText}
+ {@link #SwitchCompat_splitTrack com.rntest:splitTrack}
+ {@link #SwitchCompat_switchMinWidth com.rntest:switchMinWidth}
+ {@link #SwitchCompat_switchPadding com.rntest:switchPadding}
+ {@link #SwitchCompat_switchTextAppearance com.rntest:switchTextAppearance}
+ {@link #SwitchCompat_thumbTextPadding com.rntest:thumbTextPadding}
+ {@link #SwitchCompat_track com.rntest:track}
+
+ @see #SwitchCompat_android_textOff
+ @see #SwitchCompat_android_textOn
+ @see #SwitchCompat_android_thumb
+ @see #SwitchCompat_showText
+ @see #SwitchCompat_splitTrack
+ @see #SwitchCompat_switchMinWidth
+ @see #SwitchCompat_switchPadding
+ @see #SwitchCompat_switchTextAppearance
+ @see #SwitchCompat_thumbTextPadding
+ @see #SwitchCompat_track
+ */
+ public static final int[] SwitchCompat = {
+ 0x01010124, 0x01010125, 0x01010142, 0x7f010061,
+ 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065,
+ 0x7f010066, 0x7f010067
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#textOff}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:textOff
+ */
+ public static final int SwitchCompat_android_textOff = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textOn}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:textOn
+ */
+ public static final int SwitchCompat_android_textOn = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#thumb}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:thumb
+ */
+ public static final int SwitchCompat_android_thumb = 2;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#showText}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:showText
+ */
+ public static final int SwitchCompat_showText = 9;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#splitTrack}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:splitTrack
+ */
+ public static final int SwitchCompat_splitTrack = 8;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#switchMinWidth}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:switchMinWidth
+ */
+ public static final int SwitchCompat_switchMinWidth = 6;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#switchPadding}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:switchPadding
+ */
+ public static final int SwitchCompat_switchPadding = 7;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#switchTextAppearance}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:switchTextAppearance
+ */
+ public static final int SwitchCompat_switchTextAppearance = 5;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#thumbTextPadding}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:thumbTextPadding
+ */
+ public static final int SwitchCompat_thumbTextPadding = 4;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#track}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:track
+ */
+ public static final int SwitchCompat_track = 3;
+ /** Attributes that can be used with a TextAppearance.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #TextAppearance_android_shadowColor android:shadowColor}
+ {@link #TextAppearance_android_shadowDx android:shadowDx}
+ {@link #TextAppearance_android_shadowDy android:shadowDy}
+ {@link #TextAppearance_android_shadowRadius android:shadowRadius}
+ {@link #TextAppearance_android_textColor android:textColor}
+ {@link #TextAppearance_android_textSize android:textSize}
+ {@link #TextAppearance_android_textStyle android:textStyle}
+ {@link #TextAppearance_android_typeface android:typeface}
+ {@link #TextAppearance_textAllCaps com.rntest:textAllCaps}
+
+ @see #TextAppearance_android_shadowColor
+ @see #TextAppearance_android_shadowDx
+ @see #TextAppearance_android_shadowDy
+ @see #TextAppearance_android_shadowRadius
+ @see #TextAppearance_android_textColor
+ @see #TextAppearance_android_textSize
+ @see #TextAppearance_android_textStyle
+ @see #TextAppearance_android_typeface
+ @see #TextAppearance_textAllCaps
+ */
+ public static final int[] TextAppearance = {
+ 0x01010095, 0x01010096, 0x01010097, 0x01010098,
+ 0x01010161, 0x01010162, 0x01010163, 0x01010164,
+ 0x7f010024
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#shadowColor}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowColor
+ */
+ public static final int TextAppearance_android_shadowColor = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowDx}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowDx
+ */
+ public static final int TextAppearance_android_shadowDx = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowDy}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowDy
+ */
+ public static final int TextAppearance_android_shadowDy = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowRadius}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:shadowRadius
+ */
+ public static final int TextAppearance_android_shadowRadius = 7;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textColor}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textColor
+ */
+ public static final int TextAppearance_android_textColor = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textSize}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textSize
+ */
+ public static final int TextAppearance_android_textSize = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textStyle}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textStyle
+ */
+ public static final int TextAppearance_android_textStyle = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#typeface}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:typeface
+ */
+ public static final int TextAppearance_android_typeface = 1;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#textAllCaps}
+ attribute's value can be found in the {@link #TextAppearance} array.
+
+
+
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a boolean value, either "true
" or "false
".
+ @attr name com.rntest:textAllCaps
+ */
+ public static final int TextAppearance_textAllCaps = 8;
+ /** Attributes that can be used with a TextStyle.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #TextStyle_android_ellipsize android:ellipsize}
+ {@link #TextStyle_android_maxLines android:maxLines}
+ {@link #TextStyle_android_shadowColor android:shadowColor}
+ {@link #TextStyle_android_shadowDx android:shadowDx}
+ {@link #TextStyle_android_shadowDy android:shadowDy}
+ {@link #TextStyle_android_shadowRadius android:shadowRadius}
+ {@link #TextStyle_android_singleLine android:singleLine}
+ {@link #TextStyle_android_textAppearance android:textAppearance}
+ {@link #TextStyle_android_textColor android:textColor}
+ {@link #TextStyle_android_textSize android:textSize}
+ {@link #TextStyle_android_textStyle android:textStyle}
+
+ @see #TextStyle_android_ellipsize
+ @see #TextStyle_android_maxLines
+ @see #TextStyle_android_shadowColor
+ @see #TextStyle_android_shadowDx
+ @see #TextStyle_android_shadowDy
+ @see #TextStyle_android_shadowRadius
+ @see #TextStyle_android_singleLine
+ @see #TextStyle_android_textAppearance
+ @see #TextStyle_android_textColor
+ @see #TextStyle_android_textSize
+ @see #TextStyle_android_textStyle
+ */
+ public static final int[] TextStyle = {
+ 0x01010034, 0x01010095, 0x01010097, 0x01010098,
+ 0x010100ab, 0x01010153, 0x0101015d, 0x01010161,
+ 0x01010162, 0x01010163, 0x01010164
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#ellipsize}
+ attribute's value can be found in the {@link #TextStyle} array.
+ @attr name android:ellipsize
+ */
+ public static final int TextStyle_android_ellipsize = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#maxLines}
+ attribute's value can be found in the {@link #TextStyle} array.
+ @attr name android:maxLines
+ */
+ public static final int TextStyle_android_maxLines = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowColor}
+ attribute's value can be found in the {@link #TextStyle} array.
+ @attr name android:shadowColor
+ */
+ public static final int TextStyle_android_shadowColor = 7;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowDx}
+ attribute's value can be found in the {@link #TextStyle} array.
+ @attr name android:shadowDx
+ */
+ public static final int TextStyle_android_shadowDx = 8;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowDy}
+ attribute's value can be found in the {@link #TextStyle} array.
+ @attr name android:shadowDy
+ */
+ public static final int TextStyle_android_shadowDy = 9;
+ /**
+
This symbol is the offset where the {@link android.R.attr#shadowRadius}
+ attribute's value can be found in the {@link #TextStyle} array.
+ @attr name android:shadowRadius
+ */
+ public static final int TextStyle_android_shadowRadius = 10;
+ /**
+
This symbol is the offset where the {@link android.R.attr#singleLine}
+ attribute's value can be found in the {@link #TextStyle} array.
+ @attr name android:singleLine
+ */
+ public static final int TextStyle_android_singleLine = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textAppearance}
+ attribute's value can be found in the {@link #TextStyle} array.
+ @attr name android:textAppearance
+ */
+ public static final int TextStyle_android_textAppearance = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textColor}
+ attribute's value can be found in the {@link #TextStyle} array.
+ @attr name android:textColor
+ */
+ public static final int TextStyle_android_textColor = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textSize}
+ attribute's value can be found in the {@link #TextStyle} array.
+ @attr name android:textSize
+ */
+ public static final int TextStyle_android_textSize = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textStyle}
+ attribute's value can be found in the {@link #TextStyle} array.
+ @attr name android:textStyle
+ */
+ public static final int TextStyle_android_textStyle = 2;
+ /** Attributes that can be used with a Theme.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #Theme_actionBarDivider com.rntest:actionBarDivider}
+ {@link #Theme_actionBarItemBackground com.rntest:actionBarItemBackground}
+ {@link #Theme_actionBarPopupTheme com.rntest:actionBarPopupTheme}
+ {@link #Theme_actionBarSize com.rntest:actionBarSize}
+ {@link #Theme_actionBarSplitStyle com.rntest:actionBarSplitStyle}
+ {@link #Theme_actionBarStyle com.rntest:actionBarStyle}
+ {@link #Theme_actionBarTabBarStyle com.rntest:actionBarTabBarStyle}
+ {@link #Theme_actionBarTabStyle com.rntest:actionBarTabStyle}
+ {@link #Theme_actionBarTabTextStyle com.rntest:actionBarTabTextStyle}
+ {@link #Theme_actionBarTheme com.rntest:actionBarTheme}
+ {@link #Theme_actionBarWidgetTheme com.rntest:actionBarWidgetTheme}
+ {@link #Theme_actionButtonStyle com.rntest:actionButtonStyle}
+ {@link #Theme_actionDropDownStyle com.rntest:actionDropDownStyle}
+ {@link #Theme_actionMenuTextAppearance com.rntest:actionMenuTextAppearance}
+ {@link #Theme_actionMenuTextColor com.rntest:actionMenuTextColor}
+ {@link #Theme_actionModeBackground com.rntest:actionModeBackground}
+ {@link #Theme_actionModeCloseButtonStyle com.rntest:actionModeCloseButtonStyle}
+ {@link #Theme_actionModeCloseDrawable com.rntest:actionModeCloseDrawable}
+ {@link #Theme_actionModeCopyDrawable com.rntest:actionModeCopyDrawable}
+ {@link #Theme_actionModeCutDrawable com.rntest:actionModeCutDrawable}
+ {@link #Theme_actionModeFindDrawable com.rntest:actionModeFindDrawable}
+ {@link #Theme_actionModePasteDrawable com.rntest:actionModePasteDrawable}
+ {@link #Theme_actionModePopupWindowStyle com.rntest:actionModePopupWindowStyle}
+ {@link #Theme_actionModeSelectAllDrawable com.rntest:actionModeSelectAllDrawable}
+ {@link #Theme_actionModeShareDrawable com.rntest:actionModeShareDrawable}
+ {@link #Theme_actionModeSplitBackground com.rntest:actionModeSplitBackground}
+ {@link #Theme_actionModeStyle com.rntest:actionModeStyle}
+ {@link #Theme_actionModeWebSearchDrawable com.rntest:actionModeWebSearchDrawable}
+ {@link #Theme_actionOverflowButtonStyle com.rntest:actionOverflowButtonStyle}
+ {@link #Theme_actionOverflowMenuStyle com.rntest:actionOverflowMenuStyle}
+ {@link #Theme_activityChooserViewStyle com.rntest:activityChooserViewStyle}
+ {@link #Theme_alertDialogButtonGroupStyle com.rntest:alertDialogButtonGroupStyle}
+ {@link #Theme_alertDialogCenterButtons com.rntest:alertDialogCenterButtons}
+ {@link #Theme_alertDialogStyle com.rntest:alertDialogStyle}
+ {@link #Theme_alertDialogTheme com.rntest:alertDialogTheme}
+ {@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}
+ {@link #Theme_android_windowIsFloating android:windowIsFloating}
+ {@link #Theme_autoCompleteTextViewStyle com.rntest:autoCompleteTextViewStyle}
+ {@link #Theme_borderlessButtonStyle com.rntest:borderlessButtonStyle}
+ {@link #Theme_buttonBarButtonStyle com.rntest:buttonBarButtonStyle}
+ {@link #Theme_buttonBarNegativeButtonStyle com.rntest:buttonBarNegativeButtonStyle}
+ {@link #Theme_buttonBarNeutralButtonStyle com.rntest:buttonBarNeutralButtonStyle}
+ {@link #Theme_buttonBarPositiveButtonStyle com.rntest:buttonBarPositiveButtonStyle}
+ {@link #Theme_buttonBarStyle com.rntest:buttonBarStyle}
+ {@link #Theme_buttonStyle com.rntest:buttonStyle}
+ {@link #Theme_buttonStyleSmall com.rntest:buttonStyleSmall}
+ {@link #Theme_checkboxStyle com.rntest:checkboxStyle}
+ {@link #Theme_checkedTextViewStyle com.rntest:checkedTextViewStyle}
+ {@link #Theme_colorAccent com.rntest:colorAccent}
+ {@link #Theme_colorButtonNormal com.rntest:colorButtonNormal}
+ {@link #Theme_colorControlActivated com.rntest:colorControlActivated}
+ {@link #Theme_colorControlHighlight com.rntest:colorControlHighlight}
+ {@link #Theme_colorControlNormal com.rntest:colorControlNormal}
+ {@link #Theme_colorPrimary com.rntest:colorPrimary}
+ {@link #Theme_colorPrimaryDark com.rntest:colorPrimaryDark}
+ {@link #Theme_colorSwitchThumbNormal com.rntest:colorSwitchThumbNormal}
+ {@link #Theme_controlBackground com.rntest:controlBackground}
+ {@link #Theme_dialogPreferredPadding com.rntest:dialogPreferredPadding}
+ {@link #Theme_dialogTheme com.rntest:dialogTheme}
+ {@link #Theme_dividerHorizontal com.rntest:dividerHorizontal}
+ {@link #Theme_dividerVertical com.rntest:dividerVertical}
+ {@link #Theme_dropDownListViewStyle com.rntest:dropDownListViewStyle}
+ {@link #Theme_dropdownListPreferredItemHeight com.rntest:dropdownListPreferredItemHeight}
+ {@link #Theme_editTextBackground com.rntest:editTextBackground}
+ {@link #Theme_editTextColor com.rntest:editTextColor}
+ {@link #Theme_editTextStyle com.rntest:editTextStyle}
+ {@link #Theme_homeAsUpIndicator com.rntest:homeAsUpIndicator}
+ {@link #Theme_listChoiceBackgroundIndicator com.rntest:listChoiceBackgroundIndicator}
+ {@link #Theme_listDividerAlertDialog com.rntest:listDividerAlertDialog}
+ {@link #Theme_listPopupWindowStyle com.rntest:listPopupWindowStyle}
+ {@link #Theme_listPreferredItemHeight com.rntest:listPreferredItemHeight}
+ {@link #Theme_listPreferredItemHeightLarge com.rntest:listPreferredItemHeightLarge}
+ {@link #Theme_listPreferredItemHeightSmall com.rntest:listPreferredItemHeightSmall}
+ {@link #Theme_listPreferredItemPaddingLeft com.rntest:listPreferredItemPaddingLeft}
+ {@link #Theme_listPreferredItemPaddingRight com.rntest:listPreferredItemPaddingRight}
+ {@link #Theme_panelBackground com.rntest:panelBackground}
+ {@link #Theme_panelMenuListTheme com.rntest:panelMenuListTheme}
+ {@link #Theme_panelMenuListWidth com.rntest:panelMenuListWidth}
+ {@link #Theme_popupMenuStyle com.rntest:popupMenuStyle}
+ {@link #Theme_popupWindowStyle com.rntest:popupWindowStyle}
+ {@link #Theme_radioButtonStyle com.rntest:radioButtonStyle}
+ {@link #Theme_ratingBarStyle com.rntest:ratingBarStyle}
+ {@link #Theme_searchViewStyle com.rntest:searchViewStyle}
+ {@link #Theme_selectableItemBackground com.rntest:selectableItemBackground}
+ {@link #Theme_selectableItemBackgroundBorderless com.rntest:selectableItemBackgroundBorderless}
+ {@link #Theme_spinnerDropDownItemStyle com.rntest:spinnerDropDownItemStyle}
+ {@link #Theme_spinnerStyle com.rntest:spinnerStyle}
+ {@link #Theme_switchStyle com.rntest:switchStyle}
+ {@link #Theme_textAppearanceLargePopupMenu com.rntest:textAppearanceLargePopupMenu}
+ {@link #Theme_textAppearanceListItem com.rntest:textAppearanceListItem}
+ {@link #Theme_textAppearanceListItemSmall com.rntest:textAppearanceListItemSmall}
+ {@link #Theme_textAppearanceSearchResultSubtitle com.rntest:textAppearanceSearchResultSubtitle}
+ {@link #Theme_textAppearanceSearchResultTitle com.rntest:textAppearanceSearchResultTitle}
+ {@link #Theme_textAppearanceSmallPopupMenu com.rntest:textAppearanceSmallPopupMenu}
+ {@link #Theme_textColorAlertDialogListItem com.rntest:textColorAlertDialogListItem}
+ {@link #Theme_textColorSearchUrl com.rntest:textColorSearchUrl}
+ {@link #Theme_toolbarNavigationButtonStyle com.rntest:toolbarNavigationButtonStyle}
+ {@link #Theme_toolbarStyle com.rntest:toolbarStyle}
+ {@link #Theme_windowActionBar com.rntest:windowActionBar}
+ {@link #Theme_windowActionBarOverlay com.rntest:windowActionBarOverlay}
+ {@link #Theme_windowActionModeOverlay com.rntest:windowActionModeOverlay}
+ {@link #Theme_windowFixedHeightMajor com.rntest:windowFixedHeightMajor}
+ {@link #Theme_windowFixedHeightMinor com.rntest:windowFixedHeightMinor}
+ {@link #Theme_windowFixedWidthMajor com.rntest:windowFixedWidthMajor}
+ {@link #Theme_windowFixedWidthMinor com.rntest:windowFixedWidthMinor}
+ {@link #Theme_windowMinWidthMajor com.rntest:windowMinWidthMajor}
+ {@link #Theme_windowMinWidthMinor com.rntest:windowMinWidthMinor}
+ {@link #Theme_windowNoTitle com.rntest:windowNoTitle}
+
+ @see #Theme_actionBarDivider
+ @see #Theme_actionBarItemBackground
+ @see #Theme_actionBarPopupTheme
+ @see #Theme_actionBarSize
+ @see #Theme_actionBarSplitStyle
+ @see #Theme_actionBarStyle
+ @see #Theme_actionBarTabBarStyle
+ @see #Theme_actionBarTabStyle
+ @see #Theme_actionBarTabTextStyle
+ @see #Theme_actionBarTheme
+ @see #Theme_actionBarWidgetTheme
+ @see #Theme_actionButtonStyle
+ @see #Theme_actionDropDownStyle
+ @see #Theme_actionMenuTextAppearance
+ @see #Theme_actionMenuTextColor
+ @see #Theme_actionModeBackground
+ @see #Theme_actionModeCloseButtonStyle
+ @see #Theme_actionModeCloseDrawable
+ @see #Theme_actionModeCopyDrawable
+ @see #Theme_actionModeCutDrawable
+ @see #Theme_actionModeFindDrawable
+ @see #Theme_actionModePasteDrawable
+ @see #Theme_actionModePopupWindowStyle
+ @see #Theme_actionModeSelectAllDrawable
+ @see #Theme_actionModeShareDrawable
+ @see #Theme_actionModeSplitBackground
+ @see #Theme_actionModeStyle
+ @see #Theme_actionModeWebSearchDrawable
+ @see #Theme_actionOverflowButtonStyle
+ @see #Theme_actionOverflowMenuStyle
+ @see #Theme_activityChooserViewStyle
+ @see #Theme_alertDialogButtonGroupStyle
+ @see #Theme_alertDialogCenterButtons
+ @see #Theme_alertDialogStyle
+ @see #Theme_alertDialogTheme
+ @see #Theme_android_windowAnimationStyle
+ @see #Theme_android_windowIsFloating
+ @see #Theme_autoCompleteTextViewStyle
+ @see #Theme_borderlessButtonStyle
+ @see #Theme_buttonBarButtonStyle
+ @see #Theme_buttonBarNegativeButtonStyle
+ @see #Theme_buttonBarNeutralButtonStyle
+ @see #Theme_buttonBarPositiveButtonStyle
+ @see #Theme_buttonBarStyle
+ @see #Theme_buttonStyle
+ @see #Theme_buttonStyleSmall
+ @see #Theme_checkboxStyle
+ @see #Theme_checkedTextViewStyle
+ @see #Theme_colorAccent
+ @see #Theme_colorButtonNormal
+ @see #Theme_colorControlActivated
+ @see #Theme_colorControlHighlight
+ @see #Theme_colorControlNormal
+ @see #Theme_colorPrimary
+ @see #Theme_colorPrimaryDark
+ @see #Theme_colorSwitchThumbNormal
+ @see #Theme_controlBackground
+ @see #Theme_dialogPreferredPadding
+ @see #Theme_dialogTheme
+ @see #Theme_dividerHorizontal
+ @see #Theme_dividerVertical
+ @see #Theme_dropDownListViewStyle
+ @see #Theme_dropdownListPreferredItemHeight
+ @see #Theme_editTextBackground
+ @see #Theme_editTextColor
+ @see #Theme_editTextStyle
+ @see #Theme_homeAsUpIndicator
+ @see #Theme_listChoiceBackgroundIndicator
+ @see #Theme_listDividerAlertDialog
+ @see #Theme_listPopupWindowStyle
+ @see #Theme_listPreferredItemHeight
+ @see #Theme_listPreferredItemHeightLarge
+ @see #Theme_listPreferredItemHeightSmall
+ @see #Theme_listPreferredItemPaddingLeft
+ @see #Theme_listPreferredItemPaddingRight
+ @see #Theme_panelBackground
+ @see #Theme_panelMenuListTheme
+ @see #Theme_panelMenuListWidth
+ @see #Theme_popupMenuStyle
+ @see #Theme_popupWindowStyle
+ @see #Theme_radioButtonStyle
+ @see #Theme_ratingBarStyle
+ @see #Theme_searchViewStyle
+ @see #Theme_selectableItemBackground
+ @see #Theme_selectableItemBackgroundBorderless
+ @see #Theme_spinnerDropDownItemStyle
+ @see #Theme_spinnerStyle
+ @see #Theme_switchStyle
+ @see #Theme_textAppearanceLargePopupMenu
+ @see #Theme_textAppearanceListItem
+ @see #Theme_textAppearanceListItemSmall
+ @see #Theme_textAppearanceSearchResultSubtitle
+ @see #Theme_textAppearanceSearchResultTitle
+ @see #Theme_textAppearanceSmallPopupMenu
+ @see #Theme_textColorAlertDialogListItem
+ @see #Theme_textColorSearchUrl
+ @see #Theme_toolbarNavigationButtonStyle
+ @see #Theme_toolbarStyle
+ @see #Theme_windowActionBar
+ @see #Theme_windowActionBarOverlay
+ @see #Theme_windowActionModeOverlay
+ @see #Theme_windowFixedHeightMajor
+ @see #Theme_windowFixedHeightMinor
+ @see #Theme_windowFixedWidthMajor
+ @see #Theme_windowFixedWidthMinor
+ @see #Theme_windowMinWidthMajor
+ @see #Theme_windowMinWidthMinor
+ @see #Theme_windowNoTitle
+ */
+ public static final int[] Theme = {
+ 0x01010057, 0x010100ae, 0x7f010068, 0x7f010069,
+ 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d,
+ 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071,
+ 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075,
+ 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079,
+ 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d,
+ 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081,
+ 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085,
+ 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089,
+ 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d,
+ 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091,
+ 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095,
+ 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099,
+ 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d,
+ 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1,
+ 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5,
+ 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9,
+ 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad,
+ 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1,
+ 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5,
+ 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9,
+ 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd,
+ 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1,
+ 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5,
+ 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9,
+ 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd,
+ 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1
+ };
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#actionBarDivider}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionBarDivider
+ */
+ public static final int Theme_actionBarDivider = 23;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionBarItemBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionBarItemBackground
+ */
+ public static final int Theme_actionBarItemBackground = 24;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionBarPopupTheme}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionBarPopupTheme
+ */
+ public static final int Theme_actionBarPopupTheme = 17;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionBarSize}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+Constant Value Description
+wrap_content
0
+
+ @attr name com.rntest:actionBarSize
+ */
+ public static final int Theme_actionBarSize = 22;
+ /**
+ This symbol is the offset where the {@link com.rntest.R.attr#actionBarSplitStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionBarSplitStyle
+ */
+ public static final int Theme_actionBarSplitStyle = 19;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionBarStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionBarStyle
+ */
+ public static final int Theme_actionBarStyle = 18;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionBarTabBarStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionBarTabBarStyle
+ */
+ public static final int Theme_actionBarTabBarStyle = 13;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionBarTabStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionBarTabStyle
+ */
+ public static final int Theme_actionBarTabStyle = 12;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionBarTabTextStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionBarTabTextStyle
+ */
+ public static final int Theme_actionBarTabTextStyle = 14;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionBarTheme}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionBarTheme
+ */
+ public static final int Theme_actionBarTheme = 20;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionBarWidgetTheme}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionBarWidgetTheme
+ */
+ public static final int Theme_actionBarWidgetTheme = 21;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionButtonStyle
+ */
+ public static final int Theme_actionButtonStyle = 49;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionDropDownStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionDropDownStyle
+ */
+ public static final int Theme_actionDropDownStyle = 45;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionMenuTextAppearance}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionMenuTextAppearance
+ */
+ public static final int Theme_actionMenuTextAppearance = 25;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionMenuTextColor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ @attr name com.rntest:actionMenuTextColor
+ */
+ public static final int Theme_actionMenuTextColor = 26;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModeBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModeBackground
+ */
+ public static final int Theme_actionModeBackground = 29;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModeCloseButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModeCloseButtonStyle
+ */
+ public static final int Theme_actionModeCloseButtonStyle = 28;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModeCloseDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModeCloseDrawable
+ */
+ public static final int Theme_actionModeCloseDrawable = 31;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModeCopyDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModeCopyDrawable
+ */
+ public static final int Theme_actionModeCopyDrawable = 33;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModeCutDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModeCutDrawable
+ */
+ public static final int Theme_actionModeCutDrawable = 32;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModeFindDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModeFindDrawable
+ */
+ public static final int Theme_actionModeFindDrawable = 37;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModePasteDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModePasteDrawable
+ */
+ public static final int Theme_actionModePasteDrawable = 34;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModePopupWindowStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModePopupWindowStyle
+ */
+ public static final int Theme_actionModePopupWindowStyle = 39;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModeSelectAllDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModeSelectAllDrawable
+ */
+ public static final int Theme_actionModeSelectAllDrawable = 35;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModeShareDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModeShareDrawable
+ */
+ public static final int Theme_actionModeShareDrawable = 36;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModeSplitBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModeSplitBackground
+ */
+ public static final int Theme_actionModeSplitBackground = 30;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModeStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModeStyle
+ */
+ public static final int Theme_actionModeStyle = 27;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionModeWebSearchDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionModeWebSearchDrawable
+ */
+ public static final int Theme_actionModeWebSearchDrawable = 38;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionOverflowButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionOverflowButtonStyle
+ */
+ public static final int Theme_actionOverflowButtonStyle = 15;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#actionOverflowMenuStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:actionOverflowMenuStyle
+ */
+ public static final int Theme_actionOverflowMenuStyle = 16;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#activityChooserViewStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:activityChooserViewStyle
+ */
+ public static final int Theme_activityChooserViewStyle = 57;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#alertDialogButtonGroupStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:alertDialogButtonGroupStyle
+ */
+ public static final int Theme_alertDialogButtonGroupStyle = 91;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#alertDialogCenterButtons}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:alertDialogCenterButtons
+ */
+ public static final int Theme_alertDialogCenterButtons = 92;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#alertDialogStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:alertDialogStyle
+ */
+ public static final int Theme_alertDialogStyle = 90;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#alertDialogTheme}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:alertDialogTheme
+ */
+ public static final int Theme_alertDialogTheme = 93;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
+ attribute's value can be found in the {@link #Theme} array.
+ @attr name android:windowAnimationStyle
+ */
+ public static final int Theme_android_windowAnimationStyle = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowIsFloating}
+ attribute's value can be found in the {@link #Theme} array.
+ @attr name android:windowIsFloating
+ */
+ public static final int Theme_android_windowIsFloating = 0;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#autoCompleteTextViewStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:autoCompleteTextViewStyle
+ */
+ public static final int Theme_autoCompleteTextViewStyle = 98;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#borderlessButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:borderlessButtonStyle
+ */
+ public static final int Theme_borderlessButtonStyle = 54;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#buttonBarButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:buttonBarButtonStyle
+ */
+ public static final int Theme_buttonBarButtonStyle = 51;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#buttonBarNegativeButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:buttonBarNegativeButtonStyle
+ */
+ public static final int Theme_buttonBarNegativeButtonStyle = 96;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#buttonBarNeutralButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:buttonBarNeutralButtonStyle
+ */
+ public static final int Theme_buttonBarNeutralButtonStyle = 97;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#buttonBarPositiveButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:buttonBarPositiveButtonStyle
+ */
+ public static final int Theme_buttonBarPositiveButtonStyle = 95;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#buttonBarStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:buttonBarStyle
+ */
+ public static final int Theme_buttonBarStyle = 50;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#buttonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:buttonStyle
+ */
+ public static final int Theme_buttonStyle = 99;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#buttonStyleSmall}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:buttonStyleSmall
+ */
+ public static final int Theme_buttonStyleSmall = 100;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#checkboxStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:checkboxStyle
+ */
+ public static final int Theme_checkboxStyle = 101;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#checkedTextViewStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:checkedTextViewStyle
+ */
+ public static final int Theme_checkedTextViewStyle = 102;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#colorAccent}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:colorAccent
+ */
+ public static final int Theme_colorAccent = 83;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#colorButtonNormal}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:colorButtonNormal
+ */
+ public static final int Theme_colorButtonNormal = 87;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#colorControlActivated}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:colorControlActivated
+ */
+ public static final int Theme_colorControlActivated = 85;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#colorControlHighlight}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:colorControlHighlight
+ */
+ public static final int Theme_colorControlHighlight = 86;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#colorControlNormal}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:colorControlNormal
+ */
+ public static final int Theme_colorControlNormal = 84;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#colorPrimary}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:colorPrimary
+ */
+ public static final int Theme_colorPrimary = 81;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#colorPrimaryDark}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:colorPrimaryDark
+ */
+ public static final int Theme_colorPrimaryDark = 82;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#colorSwitchThumbNormal}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:colorSwitchThumbNormal
+ */
+ public static final int Theme_colorSwitchThumbNormal = 88;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#controlBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:controlBackground
+ */
+ public static final int Theme_controlBackground = 89;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#dialogPreferredPadding}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:dialogPreferredPadding
+ */
+ public static final int Theme_dialogPreferredPadding = 43;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#dialogTheme}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:dialogTheme
+ */
+ public static final int Theme_dialogTheme = 42;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#dividerHorizontal}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:dividerHorizontal
+ */
+ public static final int Theme_dividerHorizontal = 56;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#dividerVertical}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:dividerVertical
+ */
+ public static final int Theme_dividerVertical = 55;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#dropDownListViewStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:dropDownListViewStyle
+ */
+ public static final int Theme_dropDownListViewStyle = 73;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#dropdownListPreferredItemHeight}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:dropdownListPreferredItemHeight
+ */
+ public static final int Theme_dropdownListPreferredItemHeight = 46;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#editTextBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:editTextBackground
+ */
+ public static final int Theme_editTextBackground = 63;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#editTextColor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ @attr name com.rntest:editTextColor
+ */
+ public static final int Theme_editTextColor = 62;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#editTextStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:editTextStyle
+ */
+ public static final int Theme_editTextStyle = 103;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#homeAsUpIndicator}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:homeAsUpIndicator
+ */
+ public static final int Theme_homeAsUpIndicator = 48;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#listChoiceBackgroundIndicator}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:listChoiceBackgroundIndicator
+ */
+ public static final int Theme_listChoiceBackgroundIndicator = 80;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#listDividerAlertDialog}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:listDividerAlertDialog
+ */
+ public static final int Theme_listDividerAlertDialog = 44;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#listPopupWindowStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:listPopupWindowStyle
+ */
+ public static final int Theme_listPopupWindowStyle = 74;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#listPreferredItemHeight}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:listPreferredItemHeight
+ */
+ public static final int Theme_listPreferredItemHeight = 68;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#listPreferredItemHeightLarge}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:listPreferredItemHeightLarge
+ */
+ public static final int Theme_listPreferredItemHeightLarge = 70;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#listPreferredItemHeightSmall}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:listPreferredItemHeightSmall
+ */
+ public static final int Theme_listPreferredItemHeightSmall = 69;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#listPreferredItemPaddingLeft}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:listPreferredItemPaddingLeft
+ */
+ public static final int Theme_listPreferredItemPaddingLeft = 71;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#listPreferredItemPaddingRight}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:listPreferredItemPaddingRight
+ */
+ public static final int Theme_listPreferredItemPaddingRight = 72;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#panelBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:panelBackground
+ */
+ public static final int Theme_panelBackground = 77;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#panelMenuListTheme}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:panelMenuListTheme
+ */
+ public static final int Theme_panelMenuListTheme = 79;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#panelMenuListWidth}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:panelMenuListWidth
+ */
+ public static final int Theme_panelMenuListWidth = 78;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#popupMenuStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:popupMenuStyle
+ */
+ public static final int Theme_popupMenuStyle = 60;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#popupWindowStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:popupWindowStyle
+ */
+ public static final int Theme_popupWindowStyle = 61;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#radioButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:radioButtonStyle
+ */
+ public static final int Theme_radioButtonStyle = 104;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#ratingBarStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:ratingBarStyle
+ */
+ public static final int Theme_ratingBarStyle = 105;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#searchViewStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:searchViewStyle
+ */
+ public static final int Theme_searchViewStyle = 67;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#selectableItemBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:selectableItemBackground
+ */
+ public static final int Theme_selectableItemBackground = 52;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#selectableItemBackgroundBorderless}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:selectableItemBackgroundBorderless
+ */
+ public static final int Theme_selectableItemBackgroundBorderless = 53;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#spinnerDropDownItemStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:spinnerDropDownItemStyle
+ */
+ public static final int Theme_spinnerDropDownItemStyle = 47;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#spinnerStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:spinnerStyle
+ */
+ public static final int Theme_spinnerStyle = 106;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#switchStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:switchStyle
+ */
+ public static final int Theme_switchStyle = 107;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#textAppearanceLargePopupMenu}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:textAppearanceLargePopupMenu
+ */
+ public static final int Theme_textAppearanceLargePopupMenu = 40;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#textAppearanceListItem}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:textAppearanceListItem
+ */
+ public static final int Theme_textAppearanceListItem = 75;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#textAppearanceListItemSmall}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:textAppearanceListItemSmall
+ */
+ public static final int Theme_textAppearanceListItemSmall = 76;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#textAppearanceSearchResultSubtitle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:textAppearanceSearchResultSubtitle
+ */
+ public static final int Theme_textAppearanceSearchResultSubtitle = 65;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#textAppearanceSearchResultTitle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:textAppearanceSearchResultTitle
+ */
+ public static final int Theme_textAppearanceSearchResultTitle = 64;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#textAppearanceSmallPopupMenu}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:textAppearanceSmallPopupMenu
+ */
+ public static final int Theme_textAppearanceSmallPopupMenu = 41;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#textColorAlertDialogListItem}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ @attr name com.rntest:textColorAlertDialogListItem
+ */
+ public static final int Theme_textColorAlertDialogListItem = 94;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#textColorSearchUrl}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+
May be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+ @attr name com.rntest:textColorSearchUrl
+ */
+ public static final int Theme_textColorSearchUrl = 66;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#toolbarNavigationButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:toolbarNavigationButtonStyle
+ */
+ public static final int Theme_toolbarNavigationButtonStyle = 59;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#toolbarStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:toolbarStyle
+ */
+ public static final int Theme_toolbarStyle = 58;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#windowActionBar}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:windowActionBar
+ */
+ public static final int Theme_windowActionBar = 2;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#windowActionBarOverlay}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:windowActionBarOverlay
+ */
+ public static final int Theme_windowActionBarOverlay = 4;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#windowActionModeOverlay}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:windowActionModeOverlay
+ */
+ public static final int Theme_windowActionModeOverlay = 5;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#windowFixedHeightMajor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:windowFixedHeightMajor
+ */
+ public static final int Theme_windowFixedHeightMajor = 9;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#windowFixedHeightMinor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:windowFixedHeightMinor
+ */
+ public static final int Theme_windowFixedHeightMinor = 7;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#windowFixedWidthMajor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:windowFixedWidthMajor
+ */
+ public static final int Theme_windowFixedWidthMajor = 6;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#windowFixedWidthMinor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:windowFixedWidthMinor
+ */
+ public static final int Theme_windowFixedWidthMinor = 8;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#windowMinWidthMajor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:windowMinWidthMajor
+ */
+ public static final int Theme_windowMinWidthMajor = 10;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#windowMinWidthMinor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:windowMinWidthMinor
+ */
+ public static final int Theme_windowMinWidthMinor = 11;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#windowNoTitle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a boolean value, either "true
" or "false
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:windowNoTitle
+ */
+ public static final int Theme_windowNoTitle = 3;
+ /** Attributes that can be used with a Toolbar.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #Toolbar_android_gravity android:gravity}
+ {@link #Toolbar_android_minHeight android:minHeight}
+ {@link #Toolbar_collapseContentDescription com.rntest:collapseContentDescription}
+ {@link #Toolbar_collapseIcon com.rntest:collapseIcon}
+ {@link #Toolbar_contentInsetEnd com.rntest:contentInsetEnd}
+ {@link #Toolbar_contentInsetLeft com.rntest:contentInsetLeft}
+ {@link #Toolbar_contentInsetRight com.rntest:contentInsetRight}
+ {@link #Toolbar_contentInsetStart com.rntest:contentInsetStart}
+ {@link #Toolbar_logo com.rntest:logo}
+ {@link #Toolbar_logoDescription com.rntest:logoDescription}
+ {@link #Toolbar_maxButtonHeight com.rntest:maxButtonHeight}
+ {@link #Toolbar_navigationContentDescription com.rntest:navigationContentDescription}
+ {@link #Toolbar_navigationIcon com.rntest:navigationIcon}
+ {@link #Toolbar_popupTheme com.rntest:popupTheme}
+ {@link #Toolbar_subtitle com.rntest:subtitle}
+ {@link #Toolbar_subtitleTextAppearance com.rntest:subtitleTextAppearance}
+ {@link #Toolbar_subtitleTextColor com.rntest:subtitleTextColor}
+ {@link #Toolbar_title com.rntest:title}
+ {@link #Toolbar_titleMarginBottom com.rntest:titleMarginBottom}
+ {@link #Toolbar_titleMarginEnd com.rntest:titleMarginEnd}
+ {@link #Toolbar_titleMarginStart com.rntest:titleMarginStart}
+ {@link #Toolbar_titleMarginTop com.rntest:titleMarginTop}
+ {@link #Toolbar_titleMargins com.rntest:titleMargins}
+ {@link #Toolbar_titleTextAppearance com.rntest:titleTextAppearance}
+ {@link #Toolbar_titleTextColor com.rntest:titleTextColor}
+
+ @see #Toolbar_android_gravity
+ @see #Toolbar_android_minHeight
+ @see #Toolbar_collapseContentDescription
+ @see #Toolbar_collapseIcon
+ @see #Toolbar_contentInsetEnd
+ @see #Toolbar_contentInsetLeft
+ @see #Toolbar_contentInsetRight
+ @see #Toolbar_contentInsetStart
+ @see #Toolbar_logo
+ @see #Toolbar_logoDescription
+ @see #Toolbar_maxButtonHeight
+ @see #Toolbar_navigationContentDescription
+ @see #Toolbar_navigationIcon
+ @see #Toolbar_popupTheme
+ @see #Toolbar_subtitle
+ @see #Toolbar_subtitleTextAppearance
+ @see #Toolbar_subtitleTextColor
+ @see #Toolbar_title
+ @see #Toolbar_titleMarginBottom
+ @see #Toolbar_titleMarginEnd
+ @see #Toolbar_titleMarginStart
+ @see #Toolbar_titleMarginTop
+ @see #Toolbar_titleMargins
+ @see #Toolbar_titleTextAppearance
+ @see #Toolbar_titleTextColor
+ */
+ public static final int[] Toolbar = {
+ 0x010100af, 0x01010140, 0x7f010003, 0x7f010006,
+ 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018,
+ 0x7f010019, 0x7f01001b, 0x7f0100d2, 0x7f0100d3,
+ 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7,
+ 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db,
+ 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df,
+ 0x7f0100e0
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#gravity}
+ attribute's value can be found in the {@link #Toolbar} array.
+ @attr name android:gravity
+ */
+ public static final int Toolbar_android_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#minHeight}
+ attribute's value can be found in the {@link #Toolbar} array.
+ @attr name android:minHeight
+ */
+ public static final int Toolbar_android_minHeight = 1;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#collapseContentDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:collapseContentDescription
+ */
+ public static final int Toolbar_collapseContentDescription = 19;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#collapseIcon}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:collapseIcon
+ */
+ public static final int Toolbar_collapseIcon = 18;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#contentInsetEnd}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:contentInsetEnd
+ */
+ public static final int Toolbar_contentInsetEnd = 6;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#contentInsetLeft}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:contentInsetLeft
+ */
+ public static final int Toolbar_contentInsetLeft = 7;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#contentInsetRight}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:contentInsetRight
+ */
+ public static final int Toolbar_contentInsetRight = 8;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#contentInsetStart}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:contentInsetStart
+ */
+ public static final int Toolbar_contentInsetStart = 5;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#logo}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:logo
+ */
+ public static final int Toolbar_logo = 4;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#logoDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:logoDescription
+ */
+ public static final int Toolbar_logoDescription = 22;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#maxButtonHeight}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:maxButtonHeight
+ */
+ public static final int Toolbar_maxButtonHeight = 17;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#navigationContentDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:navigationContentDescription
+ */
+ public static final int Toolbar_navigationContentDescription = 21;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#navigationIcon}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:navigationIcon
+ */
+ public static final int Toolbar_navigationIcon = 20;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#popupTheme}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:popupTheme
+ */
+ public static final int Toolbar_popupTheme = 9;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#subtitle}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:subtitle
+ */
+ public static final int Toolbar_subtitle = 3;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#subtitleTextAppearance}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:subtitleTextAppearance
+ */
+ public static final int Toolbar_subtitleTextAppearance = 11;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#subtitleTextColor}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:subtitleTextColor
+ */
+ public static final int Toolbar_subtitleTextColor = 24;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#title}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:title
+ */
+ public static final int Toolbar_title = 2;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#titleMarginBottom}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:titleMarginBottom
+ */
+ public static final int Toolbar_titleMarginBottom = 16;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#titleMarginEnd}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:titleMarginEnd
+ */
+ public static final int Toolbar_titleMarginEnd = 14;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#titleMarginStart}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:titleMarginStart
+ */
+ public static final int Toolbar_titleMarginStart = 13;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#titleMarginTop}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:titleMarginTop
+ */
+ public static final int Toolbar_titleMarginTop = 15;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#titleMargins}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:titleMargins
+ */
+ public static final int Toolbar_titleMargins = 12;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#titleTextAppearance}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:titleTextAppearance
+ */
+ public static final int Toolbar_titleTextAppearance = 10;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#titleTextColor}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:titleTextColor
+ */
+ public static final int Toolbar_titleTextColor = 23;
+ /** Attributes that can be used with a View.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #View_android_focusable android:focusable}
+ {@link #View_android_theme android:theme}
+ {@link #View_paddingEnd com.rntest:paddingEnd}
+ {@link #View_paddingStart com.rntest:paddingStart}
+ {@link #View_theme com.rntest:theme}
+
+ @see #View_android_focusable
+ @see #View_android_theme
+ @see #View_paddingEnd
+ @see #View_paddingStart
+ @see #View_theme
+ */
+ public static final int[] View = {
+ 0x01010000, 0x010100da, 0x7f0100e1, 0x7f0100e2,
+ 0x7f0100e3
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#focusable}
+ attribute's value can be found in the {@link #View} array.
+ @attr name android:focusable
+ */
+ public static final int View_android_focusable = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#theme}
+ attribute's value can be found in the {@link #View} array.
+ @attr name android:theme
+ */
+ public static final int View_android_theme = 0;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#paddingEnd}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:paddingEnd
+ */
+ public static final int View_paddingEnd = 3;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#paddingStart}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:paddingStart
+ */
+ public static final int View_paddingStart = 2;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#theme}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package :]type :name
"
+or to a theme attribute in the form "?[package :][type :]name
".
+ @attr name com.rntest:theme
+ */
+ public static final int View_theme = 4;
+ /** Attributes that can be used with a ViewBackgroundHelper.
+
Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #ViewBackgroundHelper_android_background android:background}
+ {@link #ViewBackgroundHelper_backgroundTint com.rntest:backgroundTint}
+ {@link #ViewBackgroundHelper_backgroundTintMode com.rntest:backgroundTintMode}
+
+ @see #ViewBackgroundHelper_android_background
+ @see #ViewBackgroundHelper_backgroundTint
+ @see #ViewBackgroundHelper_backgroundTintMode
+ */
+ public static final int[] ViewBackgroundHelper = {
+ 0x010100d4, 0x7f0100e4, 0x7f0100e5
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#background}
+ attribute's value can be found in the {@link #ViewBackgroundHelper} array.
+ @attr name android:background
+ */
+ public static final int ViewBackgroundHelper_android_background = 0;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#backgroundTint}
+ attribute's value can be found in the {@link #ViewBackgroundHelper} array.
+
+
+
Must be a color value, in the form of "#rgb
", "#argb
",
+"#rrggbb
", or "#aarrggbb
".
+
This may also be a reference to a resource (in the form
+"@[package :]type :name
") or
+theme attribute (in the form
+"?[package :][type :]name
")
+containing a value of this type.
+ @attr name com.rntest:backgroundTint
+ */
+ public static final int ViewBackgroundHelper_backgroundTint = 1;
+ /**
+
This symbol is the offset where the {@link com.rntest.R.attr#backgroundTintMode}
+ attribute's value can be found in the {@link #ViewBackgroundHelper} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+Constant Value Description
+src_over
3
+src_in
5
+src_atop
9
+multiply
14
+screen
15
+
+ @attr name com.rntest:backgroundTintMode
+ */
+ public static final int ViewBackgroundHelper_backgroundTintMode = 2;
+ /** Attributes that can be used with a ViewStubCompat.
+ Includes the following attributes:
+
+
+
+ Attribute Description
+ {@link #ViewStubCompat_android_id android:id}
+ {@link #ViewStubCompat_android_inflatedId android:inflatedId}
+ {@link #ViewStubCompat_android_layout android:layout}
+
+ @see #ViewStubCompat_android_id
+ @see #ViewStubCompat_android_inflatedId
+ @see #ViewStubCompat_android_layout
+ */
+ public static final int[] ViewStubCompat = {
+ 0x010100d0, 0x010100f2, 0x010100f3
+ };
+ /**
+ This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:id
+ */
+ public static final int ViewStubCompat_android_id = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#inflatedId}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:inflatedId
+ */
+ public static final int ViewStubCompat_android_inflatedId = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:layout
+ */
+ public static final int ViewStubCompat_android_layout = 1;
+ };
+}
diff --git a/android/app/build/generated/source/r/debug/org/webkit/android_jsc/R.java b/android/app/build/generated/source/r/debug/org/webkit/android_jsc/R.java
new file mode 100644
index 00000000..2a9140d8
--- /dev/null
+++ b/android/app/build/generated/source/r/debug/org/webkit/android_jsc/R.java
@@ -0,0 +1,10 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package org.webkit.android_jsc;
+
+public final class R {
+}
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-af.json b/android/app/build/intermediates/blame/res/debug/multi/values-af.json
new file mode 100644
index 00000000..76c06389
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-af.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 103,
+ "endOffset": 154
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 103,
+ "endOffset": 379
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 159,
+ "endColumn": 107,
+ "endOffset": 262
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 384,
+ "endColumn": 107,
+ "endOffset": 487
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 267,
+ "endColumn": 122,
+ "endOffset": 385
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 492,
+ "endColumn": 122,
+ "endOffset": 610
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 390,
+ "endColumn": 99,
+ "endOffset": 485
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 615,
+ "endColumn": 99,
+ "endOffset": 710
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 490,
+ "endColumn": 105,
+ "endOffset": 591
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 715,
+ "endColumn": 105,
+ "endOffset": 816
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 596,
+ "endColumn": 84,
+ "endOffset": 676
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 821,
+ "endColumn": 84,
+ "endOffset": 901
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 681,
+ "endColumn": 102,
+ "endOffset": 779
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 906,
+ "endColumn": 102,
+ "endOffset": 1004
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 784,
+ "endColumn": 117,
+ "endOffset": 897
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1009,
+ "endColumn": 117,
+ "endOffset": 1122
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 902,
+ "endColumn": 80,
+ "endOffset": 978
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1127,
+ "endColumn": 80,
+ "endOffset": 1203
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 983,
+ "endColumn": 106,
+ "endOffset": 1085
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1208,
+ "endColumn": 106,
+ "endOffset": 1310
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1090,
+ "endColumn": 102,
+ "endOffset": 1188
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1315,
+ "endColumn": 102,
+ "endOffset": 1413
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1193,
+ "endColumn": 96,
+ "endOffset": 1285
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1418,
+ "endColumn": 96,
+ "endOffset": 1510
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1290,
+ "endColumn": 107,
+ "endOffset": 1393
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1515,
+ "endColumn": 107,
+ "endOffset": 1618
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1398,
+ "endColumn": 101,
+ "endOffset": 1495
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1623,
+ "endColumn": 101,
+ "endOffset": 1720
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1500,
+ "endColumn": 101,
+ "endOffset": 1597
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1725,
+ "endColumn": 101,
+ "endOffset": 1822
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1602,
+ "endColumn": 116,
+ "endOffset": 1714
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1827,
+ "endColumn": 116,
+ "endOffset": 1939
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1719,
+ "endColumn": 97,
+ "endOffset": 1812
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1944,
+ "endColumn": 97,
+ "endOffset": 2037
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1817,
+ "endColumn": 100,
+ "endOffset": 1913
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2042,
+ "endColumn": 100,
+ "endOffset": 2138
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-am.json b/android/app/build/intermediates/blame/res/debug/multi/values-am.json
new file mode 100644
index 00000000..5fcdfc9e
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-am.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 101,
+ "endOffset": 152
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 101,
+ "endOffset": 377
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 157,
+ "endColumn": 107,
+ "endOffset": 260
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 382,
+ "endColumn": 107,
+ "endOffset": 485
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 265,
+ "endColumn": 122,
+ "endOffset": 383
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 490,
+ "endColumn": 122,
+ "endOffset": 608
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 388,
+ "endColumn": 98,
+ "endOffset": 482
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 613,
+ "endColumn": 98,
+ "endOffset": 707
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 487,
+ "endColumn": 105,
+ "endOffset": 588
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 712,
+ "endColumn": 105,
+ "endOffset": 813
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 593,
+ "endColumn": 85,
+ "endOffset": 674
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 818,
+ "endColumn": 85,
+ "endOffset": 899
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 679,
+ "endColumn": 102,
+ "endOffset": 777
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 904,
+ "endColumn": 102,
+ "endOffset": 1002
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 782,
+ "endColumn": 112,
+ "endOffset": 890
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1007,
+ "endColumn": 112,
+ "endOffset": 1115
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 895,
+ "endColumn": 78,
+ "endOffset": 969
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1120,
+ "endColumn": 78,
+ "endOffset": 1194
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 974,
+ "endColumn": 99,
+ "endOffset": 1069
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1199,
+ "endColumn": 99,
+ "endOffset": 1294
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1074,
+ "endColumn": 99,
+ "endOffset": 1169
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1299,
+ "endColumn": 99,
+ "endOffset": 1394
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1174,
+ "endColumn": 95,
+ "endOffset": 1265
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1399,
+ "endColumn": 95,
+ "endOffset": 1490
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1270,
+ "endColumn": 102,
+ "endOffset": 1368
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1495,
+ "endColumn": 102,
+ "endOffset": 1593
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1373,
+ "endColumn": 98,
+ "endOffset": 1467
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1598,
+ "endColumn": 98,
+ "endOffset": 1692
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1472,
+ "endColumn": 106,
+ "endOffset": 1574
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1697,
+ "endColumn": 106,
+ "endOffset": 1799
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1579,
+ "endColumn": 115,
+ "endOffset": 1690
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1804,
+ "endColumn": 115,
+ "endOffset": 1915
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1695,
+ "endColumn": 95,
+ "endOffset": 1786
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1920,
+ "endColumn": 95,
+ "endOffset": 2011
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1791,
+ "endColumn": 100,
+ "endOffset": 1887
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2016,
+ "endColumn": 100,
+ "endOffset": 2112
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ar.json b/android/app/build/intermediates/blame/res/debug/multi/values-ar.json
new file mode 100644
index 00000000..f6f84dcd
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ar.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 116,
+ "endOffset": 167
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 116,
+ "endOffset": 392
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 172,
+ "endColumn": 107,
+ "endOffset": 275
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 397,
+ "endColumn": 107,
+ "endOffset": 500
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 122,
+ "endOffset": 398
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 505,
+ "endColumn": 122,
+ "endOffset": 623
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 403,
+ "endColumn": 103,
+ "endOffset": 502
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 628,
+ "endColumn": 103,
+ "endOffset": 727
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 507,
+ "endColumn": 108,
+ "endOffset": 611
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 732,
+ "endColumn": 108,
+ "endOffset": 836
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 616,
+ "endColumn": 81,
+ "endOffset": 693
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 841,
+ "endColumn": 81,
+ "endOffset": 918
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 698,
+ "endColumn": 100,
+ "endOffset": 794
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 923,
+ "endColumn": 100,
+ "endOffset": 1019
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 799,
+ "endColumn": 113,
+ "endOffset": 908
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1024,
+ "endColumn": 113,
+ "endOffset": 1133
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 913,
+ "endColumn": 78,
+ "endOffset": 987
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1138,
+ "endColumn": 78,
+ "endOffset": 1212
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 992,
+ "endColumn": 104,
+ "endOffset": 1092
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1217,
+ "endColumn": 104,
+ "endOffset": 1317
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1097,
+ "endColumn": 100,
+ "endOffset": 1193
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1322,
+ "endColumn": 100,
+ "endOffset": 1418
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1198,
+ "endColumn": 95,
+ "endOffset": 1289
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1423,
+ "endColumn": 95,
+ "endOffset": 1514
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1294,
+ "endColumn": 107,
+ "endOffset": 1397
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1519,
+ "endColumn": 107,
+ "endOffset": 1622
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1402,
+ "endColumn": 102,
+ "endOffset": 1500
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1627,
+ "endColumn": 102,
+ "endOffset": 1725
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1505,
+ "endColumn": 102,
+ "endOffset": 1603
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1730,
+ "endColumn": 102,
+ "endOffset": 1828
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1608,
+ "endColumn": 118,
+ "endOffset": 1722
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1833,
+ "endColumn": 118,
+ "endOffset": 1947
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1727,
+ "endColumn": 96,
+ "endOffset": 1819
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1952,
+ "endColumn": 96,
+ "endOffset": 2044
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1824,
+ "endColumn": 100,
+ "endOffset": 1920
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2049,
+ "endColumn": 100,
+ "endOffset": 2145
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-az-rAZ.json b/android/app/build/intermediates/blame/res/debug/multi/values-az-rAZ.json
new file mode 100644
index 00000000..7a4df559
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-az-rAZ.json
@@ -0,0 +1,330 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 97,
+ "endOffset": 148
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 97,
+ "endOffset": 377
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 153,
+ "endColumn": 107,
+ "endOffset": 256
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 382,
+ "endColumn": 107,
+ "endOffset": 485
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 261,
+ "endColumn": 122,
+ "endOffset": 379
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 490,
+ "endColumn": 122,
+ "endOffset": 608
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 384,
+ "endColumn": 98,
+ "endOffset": 478
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 613,
+ "endColumn": 98,
+ "endOffset": 707
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 483,
+ "endColumn": 109,
+ "endOffset": 588
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 712,
+ "endColumn": 109,
+ "endOffset": 817
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 593,
+ "endColumn": 87,
+ "endOffset": 676
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 822,
+ "endColumn": 87,
+ "endOffset": 905
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 681,
+ "endColumn": 106,
+ "endOffset": 783
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 910,
+ "endColumn": 106,
+ "endOffset": 1012
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 788,
+ "endColumn": 113,
+ "endOffset": 897
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1017,
+ "endColumn": 113,
+ "endOffset": 1126
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 902,
+ "endColumn": 84,
+ "endOffset": 982
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1131,
+ "endColumn": 84,
+ "endOffset": 1211
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 987,
+ "endColumn": 106,
+ "endOffset": 1089
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1216,
+ "endColumn": 106,
+ "endOffset": 1318
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1094,
+ "endColumn": 106,
+ "endOffset": 1196
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1323,
+ "endColumn": 106,
+ "endOffset": 1425
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1201,
+ "endColumn": 99,
+ "endOffset": 1296
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1430,
+ "endColumn": 99,
+ "endOffset": 1525
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1301,
+ "endColumn": 108,
+ "endOffset": 1405
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1530,
+ "endColumn": 108,
+ "endOffset": 1634
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1410,
+ "endColumn": 103,
+ "endOffset": 1509
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1639,
+ "endColumn": 103,
+ "endOffset": 1738
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1514,
+ "endColumn": 109,
+ "endOffset": 1619
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1743,
+ "endColumn": 109,
+ "endOffset": 1848
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1624,
+ "endColumn": 96,
+ "endOffset": 1716
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1853,
+ "endColumn": 96,
+ "endOffset": 1945
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1721,
+ "endColumn": 100,
+ "endOffset": 1817
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1950,
+ "endColumn": 100,
+ "endOffset": 2046
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-bg.json b/android/app/build/intermediates/blame/res/debug/multi/values-bg.json
new file mode 100644
index 00000000..9e9972f0
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-bg.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 114,
+ "endOffset": 165
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 114,
+ "endOffset": 390
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 170,
+ "endColumn": 110,
+ "endOffset": 276
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 395,
+ "endColumn": 110,
+ "endOffset": 501
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 281,
+ "endColumn": 127,
+ "endOffset": 404
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 506,
+ "endColumn": 127,
+ "endOffset": 629
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 409,
+ "endColumn": 106,
+ "endOffset": 511
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 634,
+ "endColumn": 106,
+ "endOffset": 736
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 516,
+ "endColumn": 104,
+ "endOffset": 616
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 741,
+ "endColumn": 104,
+ "endOffset": 841
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 621,
+ "endColumn": 85,
+ "endOffset": 702
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 846,
+ "endColumn": 85,
+ "endOffset": 927
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 707,
+ "endColumn": 104,
+ "endOffset": 807
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 932,
+ "endColumn": 104,
+ "endOffset": 1032
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 812,
+ "endColumn": 120,
+ "endOffset": 928
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1037,
+ "endColumn": 120,
+ "endOffset": 1153
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 933,
+ "endColumn": 82,
+ "endOffset": 1011
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1158,
+ "endColumn": 82,
+ "endOffset": 1236
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1016,
+ "endColumn": 113,
+ "endOffset": 1125
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1241,
+ "endColumn": 113,
+ "endOffset": 1350
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1130,
+ "endColumn": 108,
+ "endOffset": 1234
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1355,
+ "endColumn": 108,
+ "endOffset": 1459
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1239,
+ "endColumn": 99,
+ "endOffset": 1334
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1464,
+ "endColumn": 99,
+ "endOffset": 1559
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1339,
+ "endColumn": 113,
+ "endOffset": 1448
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1564,
+ "endColumn": 113,
+ "endOffset": 1673
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1453,
+ "endColumn": 105,
+ "endOffset": 1554
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1678,
+ "endColumn": 105,
+ "endOffset": 1779
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1559,
+ "endColumn": 107,
+ "endOffset": 1662
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1784,
+ "endColumn": 107,
+ "endOffset": 1887
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1667,
+ "endColumn": 122,
+ "endOffset": 1785
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1892,
+ "endColumn": 122,
+ "endOffset": 2010
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1790,
+ "endColumn": 98,
+ "endOffset": 1884
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2015,
+ "endColumn": 98,
+ "endOffset": 2109
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1889,
+ "endColumn": 100,
+ "endOffset": 1985
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2114,
+ "endColumn": 100,
+ "endOffset": 2210
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-bn-rBD.json b/android/app/build/intermediates/blame/res/debug/multi/values-bn-rBD.json
new file mode 100644
index 00000000..41101591
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-bn-rBD.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 108,
+ "endOffset": 159
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 108,
+ "endOffset": 388
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 164,
+ "endColumn": 107,
+ "endOffset": 267
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 393,
+ "endColumn": 107,
+ "endOffset": 496
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 272,
+ "endColumn": 122,
+ "endOffset": 390
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 501,
+ "endColumn": 122,
+ "endOffset": 619
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 395,
+ "endColumn": 111,
+ "endOffset": 502
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 624,
+ "endColumn": 111,
+ "endOffset": 731
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 507,
+ "endColumn": 105,
+ "endOffset": 608
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 736,
+ "endColumn": 105,
+ "endOffset": 837
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 613,
+ "endColumn": 93,
+ "endOffset": 702
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 842,
+ "endColumn": 93,
+ "endOffset": 931
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 707,
+ "endColumn": 104,
+ "endOffset": 807
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 936,
+ "endColumn": 104,
+ "endOffset": 1036
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 812,
+ "endColumn": 129,
+ "endOffset": 937
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1041,
+ "endColumn": 129,
+ "endOffset": 1166
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 942,
+ "endColumn": 86,
+ "endOffset": 1024
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1171,
+ "endColumn": 86,
+ "endOffset": 1253
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1029,
+ "endColumn": 109,
+ "endOffset": 1134
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1258,
+ "endColumn": 109,
+ "endOffset": 1363
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1139,
+ "endColumn": 115,
+ "endOffset": 1250
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1368,
+ "endColumn": 115,
+ "endOffset": 1479
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1255,
+ "endColumn": 106,
+ "endOffset": 1357
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1484,
+ "endColumn": 106,
+ "endOffset": 1586
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1362,
+ "endColumn": 109,
+ "endOffset": 1467
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1591,
+ "endColumn": 109,
+ "endOffset": 1696
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1472,
+ "endColumn": 105,
+ "endOffset": 1573
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1701,
+ "endColumn": 105,
+ "endOffset": 1802
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1578,
+ "endColumn": 109,
+ "endOffset": 1683
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1807,
+ "endColumn": 109,
+ "endOffset": 1912
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1688,
+ "endColumn": 124,
+ "endOffset": 1808
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1917,
+ "endColumn": 124,
+ "endOffset": 2037
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1813,
+ "endColumn": 104,
+ "endOffset": 1913
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2042,
+ "endColumn": 104,
+ "endOffset": 2142
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1918,
+ "endColumn": 100,
+ "endOffset": 2014
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2147,
+ "endColumn": 100,
+ "endOffset": 2243
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ca.json b/android/app/build/intermediates/blame/res/debug/multi/values-ca.json
new file mode 100644
index 00000000..c70184a2
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ca.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 117,
+ "endOffset": 168
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 117,
+ "endOffset": 393
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 173,
+ "endColumn": 107,
+ "endOffset": 276
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 398,
+ "endColumn": 107,
+ "endOffset": 501
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 281,
+ "endColumn": 122,
+ "endOffset": 399
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 506,
+ "endColumn": 122,
+ "endOffset": 624
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 404,
+ "endColumn": 105,
+ "endOffset": 505
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 629,
+ "endColumn": 105,
+ "endOffset": 730
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 510,
+ "endColumn": 106,
+ "endOffset": 612
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 735,
+ "endColumn": 106,
+ "endOffset": 837
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 617,
+ "endColumn": 82,
+ "endOffset": 695
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 842,
+ "endColumn": 82,
+ "endOffset": 920
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 700,
+ "endColumn": 107,
+ "endOffset": 803
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 925,
+ "endColumn": 107,
+ "endOffset": 1028
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 808,
+ "endColumn": 125,
+ "endOffset": 929
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1033,
+ "endColumn": 125,
+ "endOffset": 1154
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 934,
+ "endColumn": 82,
+ "endOffset": 1012
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1159,
+ "endColumn": 82,
+ "endOffset": 1237
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1017,
+ "endColumn": 110,
+ "endOffset": 1123
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1242,
+ "endColumn": 110,
+ "endOffset": 1348
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1128,
+ "endColumn": 108,
+ "endOffset": 1232
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1353,
+ "endColumn": 108,
+ "endOffset": 1457
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1237,
+ "endColumn": 97,
+ "endOffset": 1330
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1462,
+ "endColumn": 97,
+ "endOffset": 1555
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1335,
+ "endColumn": 109,
+ "endOffset": 1440
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1560,
+ "endColumn": 109,
+ "endOffset": 1665
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1445,
+ "endColumn": 103,
+ "endOffset": 1544
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1670,
+ "endColumn": 103,
+ "endOffset": 1769
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1549,
+ "endColumn": 107,
+ "endOffset": 1652
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1774,
+ "endColumn": 107,
+ "endOffset": 1877
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1657,
+ "endColumn": 122,
+ "endOffset": 1775
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1882,
+ "endColumn": 122,
+ "endOffset": 2000
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1780,
+ "endColumn": 98,
+ "endOffset": 1874
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2005,
+ "endColumn": 98,
+ "endOffset": 2099
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1879,
+ "endColumn": 100,
+ "endOffset": 1975
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2104,
+ "endColumn": 100,
+ "endOffset": 2200
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-cs.json b/android/app/build/intermediates/blame/res/debug/multi/values-cs.json
new file mode 100644
index 00000000..543c9600
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-cs.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 106,
+ "endOffset": 157
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 106,
+ "endOffset": 382
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 162,
+ "endColumn": 108,
+ "endOffset": 266
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 387,
+ "endColumn": 108,
+ "endOffset": 491
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 271,
+ "endColumn": 123,
+ "endOffset": 390
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 496,
+ "endColumn": 123,
+ "endOffset": 615
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 395,
+ "endColumn": 101,
+ "endOffset": 492
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 620,
+ "endColumn": 101,
+ "endOffset": 717
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 497,
+ "endColumn": 108,
+ "endOffset": 601
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 722,
+ "endColumn": 108,
+ "endOffset": 826
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 606,
+ "endColumn": 85,
+ "endOffset": 687
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 831,
+ "endColumn": 85,
+ "endOffset": 912
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 692,
+ "endColumn": 104,
+ "endOffset": 792
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 917,
+ "endColumn": 104,
+ "endOffset": 1017
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 797,
+ "endColumn": 116,
+ "endOffset": 909
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1022,
+ "endColumn": 116,
+ "endOffset": 1134
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 914,
+ "endColumn": 83,
+ "endOffset": 993
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1139,
+ "endColumn": 83,
+ "endOffset": 1218
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 998,
+ "endColumn": 103,
+ "endOffset": 1097
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1223,
+ "endColumn": 103,
+ "endOffset": 1322
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1102,
+ "endColumn": 108,
+ "endOffset": 1206
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1327,
+ "endColumn": 108,
+ "endOffset": 1431
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1211,
+ "endColumn": 98,
+ "endOffset": 1305
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1436,
+ "endColumn": 98,
+ "endOffset": 1530
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1310,
+ "endColumn": 105,
+ "endOffset": 1411
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1535,
+ "endColumn": 105,
+ "endOffset": 1636
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1416,
+ "endColumn": 109,
+ "endOffset": 1521
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1641,
+ "endColumn": 109,
+ "endOffset": 1746
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1526,
+ "endColumn": 106,
+ "endOffset": 1628
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1751,
+ "endColumn": 106,
+ "endOffset": 1853
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1633,
+ "endColumn": 121,
+ "endOffset": 1750
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1858,
+ "endColumn": 121,
+ "endOffset": 1975
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1755,
+ "endColumn": 97,
+ "endOffset": 1848
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1980,
+ "endColumn": 97,
+ "endOffset": 2073
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1853,
+ "endColumn": 100,
+ "endOffset": 1949
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2078,
+ "endColumn": 100,
+ "endOffset": 2174
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-da.json b/android/app/build/intermediates/blame/res/debug/multi/values-da.json
new file mode 100644
index 00000000..ab9821af
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-da.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 102,
+ "endOffset": 153
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 102,
+ "endOffset": 378
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 158,
+ "endColumn": 107,
+ "endOffset": 261
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 383,
+ "endColumn": 107,
+ "endOffset": 486
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 266,
+ "endColumn": 122,
+ "endOffset": 384
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 491,
+ "endColumn": 122,
+ "endOffset": 609
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 389,
+ "endColumn": 98,
+ "endOffset": 483
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 614,
+ "endColumn": 98,
+ "endOffset": 708
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 488,
+ "endColumn": 111,
+ "endOffset": 595
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 713,
+ "endColumn": 111,
+ "endOffset": 820
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 600,
+ "endColumn": 82,
+ "endOffset": 678
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 825,
+ "endColumn": 82,
+ "endOffset": 903
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 683,
+ "endColumn": 99,
+ "endOffset": 778
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 908,
+ "endColumn": 99,
+ "endOffset": 1003
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 783,
+ "endColumn": 112,
+ "endOffset": 891
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1008,
+ "endColumn": 112,
+ "endOffset": 1116
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 896,
+ "endColumn": 78,
+ "endOffset": 970
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1121,
+ "endColumn": 78,
+ "endOffset": 1195
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 975,
+ "endColumn": 108,
+ "endOffset": 1079
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1200,
+ "endColumn": 108,
+ "endOffset": 1304
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1084,
+ "endColumn": 107,
+ "endOffset": 1187
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1309,
+ "endColumn": 107,
+ "endOffset": 1412
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1192,
+ "endColumn": 95,
+ "endOffset": 1283
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1417,
+ "endColumn": 95,
+ "endOffset": 1508
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1288,
+ "endColumn": 113,
+ "endOffset": 1397
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1513,
+ "endColumn": 113,
+ "endOffset": 1622
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1402,
+ "endColumn": 101,
+ "endOffset": 1499
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1627,
+ "endColumn": 101,
+ "endOffset": 1724
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1504,
+ "endColumn": 100,
+ "endOffset": 1600
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1729,
+ "endColumn": 100,
+ "endOffset": 1825
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1605,
+ "endColumn": 115,
+ "endOffset": 1716
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1830,
+ "endColumn": 115,
+ "endOffset": 1941
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1721,
+ "endColumn": 96,
+ "endOffset": 1813
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1946,
+ "endColumn": 96,
+ "endOffset": 2038
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1818,
+ "endColumn": 100,
+ "endOffset": 1914
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2043,
+ "endColumn": 100,
+ "endOffset": 2139
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-de.json b/android/app/build/intermediates/blame/res/debug/multi/values-de.json
new file mode 100644
index 00000000..81fc0583
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-de.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 104,
+ "endOffset": 155
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 104,
+ "endOffset": 380
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 160,
+ "endColumn": 107,
+ "endOffset": 263
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 385,
+ "endColumn": 107,
+ "endOffset": 488
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 268,
+ "endColumn": 122,
+ "endOffset": 386
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 493,
+ "endColumn": 122,
+ "endOffset": 611
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 391,
+ "endColumn": 97,
+ "endOffset": 484
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 616,
+ "endColumn": 97,
+ "endOffset": 709
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 489,
+ "endColumn": 111,
+ "endOffset": 596
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 714,
+ "endColumn": 111,
+ "endOffset": 821
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 601,
+ "endColumn": 85,
+ "endOffset": 682
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 826,
+ "endColumn": 85,
+ "endOffset": 907
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 687,
+ "endColumn": 104,
+ "endOffset": 787
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 912,
+ "endColumn": 104,
+ "endOffset": 1012
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 792,
+ "endColumn": 114,
+ "endOffset": 902
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1017,
+ "endColumn": 114,
+ "endOffset": 1127
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 907,
+ "endColumn": 81,
+ "endOffset": 984
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1132,
+ "endColumn": 81,
+ "endOffset": 1209
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 989,
+ "endColumn": 110,
+ "endOffset": 1095
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1214,
+ "endColumn": 110,
+ "endOffset": 1320
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1100,
+ "endColumn": 102,
+ "endOffset": 1198
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1325,
+ "endColumn": 102,
+ "endOffset": 1423
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1203,
+ "endColumn": 98,
+ "endOffset": 1297
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1428,
+ "endColumn": 98,
+ "endOffset": 1522
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1302,
+ "endColumn": 110,
+ "endOffset": 1408
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1527,
+ "endColumn": 110,
+ "endOffset": 1633
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1413,
+ "endColumn": 101,
+ "endOffset": 1510
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1638,
+ "endColumn": 101,
+ "endOffset": 1735
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1515,
+ "endColumn": 106,
+ "endOffset": 1617
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1740,
+ "endColumn": 106,
+ "endOffset": 1842
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1622,
+ "endColumn": 121,
+ "endOffset": 1739
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1847,
+ "endColumn": 121,
+ "endOffset": 1964
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1744,
+ "endColumn": 101,
+ "endOffset": 1841
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1969,
+ "endColumn": 101,
+ "endOffset": 2066
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1846,
+ "endColumn": 100,
+ "endOffset": 1942
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2071,
+ "endColumn": 100,
+ "endOffset": 2167
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-el.json b/android/app/build/intermediates/blame/res/debug/multi/values-el.json
new file mode 100644
index 00000000..6b3e004a
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-el.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 117,
+ "endOffset": 168
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 117,
+ "endOffset": 393
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 173,
+ "endColumn": 107,
+ "endOffset": 276
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 398,
+ "endColumn": 107,
+ "endOffset": 501
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 281,
+ "endColumn": 122,
+ "endOffset": 399
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 506,
+ "endColumn": 122,
+ "endOffset": 624
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 404,
+ "endColumn": 110,
+ "endOffset": 510
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 629,
+ "endColumn": 110,
+ "endOffset": 735
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 515,
+ "endColumn": 116,
+ "endOffset": 627
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 740,
+ "endColumn": 116,
+ "endOffset": 852
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 632,
+ "endColumn": 84,
+ "endOffset": 712
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 857,
+ "endColumn": 84,
+ "endOffset": 937
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 717,
+ "endColumn": 104,
+ "endOffset": 817
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 942,
+ "endColumn": 104,
+ "endOffset": 1042
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 822,
+ "endColumn": 125,
+ "endOffset": 943
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1047,
+ "endColumn": 125,
+ "endOffset": 1168
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 948,
+ "endColumn": 84,
+ "endOffset": 1028
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1173,
+ "endColumn": 84,
+ "endOffset": 1253
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1033,
+ "endColumn": 110,
+ "endOffset": 1139
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1258,
+ "endColumn": 110,
+ "endOffset": 1364
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1144,
+ "endColumn": 109,
+ "endOffset": 1249
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1369,
+ "endColumn": 109,
+ "endOffset": 1474
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1254,
+ "endColumn": 101,
+ "endOffset": 1351
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1479,
+ "endColumn": 101,
+ "endOffset": 1576
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1356,
+ "endColumn": 110,
+ "endOffset": 1462
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1581,
+ "endColumn": 110,
+ "endOffset": 1687
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1467,
+ "endColumn": 108,
+ "endOffset": 1571
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1692,
+ "endColumn": 108,
+ "endOffset": 1796
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1576,
+ "endColumn": 107,
+ "endOffset": 1679
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1801,
+ "endColumn": 107,
+ "endOffset": 1904
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1684,
+ "endColumn": 122,
+ "endOffset": 1802
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1909,
+ "endColumn": 122,
+ "endOffset": 2027
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1807,
+ "endColumn": 99,
+ "endOffset": 1902
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2032,
+ "endColumn": 99,
+ "endOffset": 2127
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1907,
+ "endColumn": 100,
+ "endOffset": 2003
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2132,
+ "endColumn": 100,
+ "endOffset": 2228
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-en-rAU.json b/android/app/build/intermediates/blame/res/debug/multi/values-en-rAU.json
new file mode 100644
index 00000000..10a6a20a
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-en-rAU.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 103,
+ "endOffset": 154
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 103,
+ "endOffset": 383
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 159,
+ "endColumn": 107,
+ "endOffset": 262
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 388,
+ "endColumn": 107,
+ "endOffset": 491
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 267,
+ "endColumn": 122,
+ "endOffset": 385
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 496,
+ "endColumn": 122,
+ "endOffset": 614
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 390,
+ "endColumn": 99,
+ "endOffset": 485
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 619,
+ "endColumn": 99,
+ "endOffset": 714
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 490,
+ "endColumn": 107,
+ "endOffset": 593
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 719,
+ "endColumn": 107,
+ "endOffset": 822
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 598,
+ "endColumn": 83,
+ "endOffset": 677
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 827,
+ "endColumn": 83,
+ "endOffset": 906
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 682,
+ "endColumn": 99,
+ "endOffset": 777
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 911,
+ "endColumn": 99,
+ "endOffset": 1006
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 782,
+ "endColumn": 114,
+ "endOffset": 892
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1011,
+ "endColumn": 114,
+ "endOffset": 1121
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 897,
+ "endColumn": 81,
+ "endOffset": 974
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1126,
+ "endColumn": 81,
+ "endOffset": 1203
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 979,
+ "endColumn": 102,
+ "endOffset": 1077
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1208,
+ "endColumn": 102,
+ "endOffset": 1306
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1082,
+ "endColumn": 103,
+ "endOffset": 1181
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1311,
+ "endColumn": 103,
+ "endOffset": 1410
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1186,
+ "endColumn": 98,
+ "endOffset": 1280
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1415,
+ "endColumn": 98,
+ "endOffset": 1509
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1285,
+ "endColumn": 104,
+ "endOffset": 1385
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1514,
+ "endColumn": 104,
+ "endOffset": 1614
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1390,
+ "endColumn": 102,
+ "endOffset": 1488
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1619,
+ "endColumn": 102,
+ "endOffset": 1717
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1493,
+ "endColumn": 103,
+ "endOffset": 1592
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1722,
+ "endColumn": 103,
+ "endOffset": 1821
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1597,
+ "endColumn": 118,
+ "endOffset": 1711
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1826,
+ "endColumn": 118,
+ "endOffset": 1940
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1716,
+ "endColumn": 99,
+ "endOffset": 1811
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1945,
+ "endColumn": 99,
+ "endOffset": 2040
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1816,
+ "endColumn": 100,
+ "endOffset": 1912
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2045,
+ "endColumn": 100,
+ "endOffset": 2141
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-en-rGB.json b/android/app/build/intermediates/blame/res/debug/multi/values-en-rGB.json
new file mode 100644
index 00000000..491351c5
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-en-rGB.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 103,
+ "endOffset": 154
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 103,
+ "endOffset": 383
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 159,
+ "endColumn": 107,
+ "endOffset": 262
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 388,
+ "endColumn": 107,
+ "endOffset": 491
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 267,
+ "endColumn": 122,
+ "endOffset": 385
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 496,
+ "endColumn": 122,
+ "endOffset": 614
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 390,
+ "endColumn": 99,
+ "endOffset": 485
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 619,
+ "endColumn": 99,
+ "endOffset": 714
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 490,
+ "endColumn": 107,
+ "endOffset": 593
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 719,
+ "endColumn": 107,
+ "endOffset": 822
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 598,
+ "endColumn": 83,
+ "endOffset": 677
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 827,
+ "endColumn": 83,
+ "endOffset": 906
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 682,
+ "endColumn": 99,
+ "endOffset": 777
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 911,
+ "endColumn": 99,
+ "endOffset": 1006
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 782,
+ "endColumn": 114,
+ "endOffset": 892
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1011,
+ "endColumn": 114,
+ "endOffset": 1121
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 897,
+ "endColumn": 81,
+ "endOffset": 974
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1126,
+ "endColumn": 81,
+ "endOffset": 1203
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 979,
+ "endColumn": 102,
+ "endOffset": 1077
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1208,
+ "endColumn": 102,
+ "endOffset": 1306
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1082,
+ "endColumn": 103,
+ "endOffset": 1181
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1311,
+ "endColumn": 103,
+ "endOffset": 1410
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1186,
+ "endColumn": 98,
+ "endOffset": 1280
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1415,
+ "endColumn": 98,
+ "endOffset": 1509
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1285,
+ "endColumn": 104,
+ "endOffset": 1385
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1514,
+ "endColumn": 104,
+ "endOffset": 1614
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1390,
+ "endColumn": 102,
+ "endOffset": 1488
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1619,
+ "endColumn": 102,
+ "endOffset": 1717
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1493,
+ "endColumn": 103,
+ "endOffset": 1592
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1722,
+ "endColumn": 103,
+ "endOffset": 1821
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1597,
+ "endColumn": 118,
+ "endOffset": 1711
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1826,
+ "endColumn": 118,
+ "endOffset": 1940
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1716,
+ "endColumn": 99,
+ "endOffset": 1811
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1945,
+ "endColumn": 99,
+ "endOffset": 2040
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1816,
+ "endColumn": 100,
+ "endOffset": 1912
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2045,
+ "endColumn": 100,
+ "endOffset": 2141
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-en-rIN.json b/android/app/build/intermediates/blame/res/debug/multi/values-en-rIN.json
new file mode 100644
index 00000000..a981f40a
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-en-rIN.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 103,
+ "endOffset": 154
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 103,
+ "endOffset": 383
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 159,
+ "endColumn": 107,
+ "endOffset": 262
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 388,
+ "endColumn": 107,
+ "endOffset": 491
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 267,
+ "endColumn": 122,
+ "endOffset": 385
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 496,
+ "endColumn": 122,
+ "endOffset": 614
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 390,
+ "endColumn": 99,
+ "endOffset": 485
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 619,
+ "endColumn": 99,
+ "endOffset": 714
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 490,
+ "endColumn": 107,
+ "endOffset": 593
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 719,
+ "endColumn": 107,
+ "endOffset": 822
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 598,
+ "endColumn": 83,
+ "endOffset": 677
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 827,
+ "endColumn": 83,
+ "endOffset": 906
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 682,
+ "endColumn": 99,
+ "endOffset": 777
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 911,
+ "endColumn": 99,
+ "endOffset": 1006
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 782,
+ "endColumn": 114,
+ "endOffset": 892
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1011,
+ "endColumn": 114,
+ "endOffset": 1121
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 897,
+ "endColumn": 81,
+ "endOffset": 974
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1126,
+ "endColumn": 81,
+ "endOffset": 1203
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 979,
+ "endColumn": 102,
+ "endOffset": 1077
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1208,
+ "endColumn": 102,
+ "endOffset": 1306
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1082,
+ "endColumn": 103,
+ "endOffset": 1181
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1311,
+ "endColumn": 103,
+ "endOffset": 1410
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1186,
+ "endColumn": 98,
+ "endOffset": 1280
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1415,
+ "endColumn": 98,
+ "endOffset": 1509
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1285,
+ "endColumn": 104,
+ "endOffset": 1385
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1514,
+ "endColumn": 104,
+ "endOffset": 1614
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1390,
+ "endColumn": 102,
+ "endOffset": 1488
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1619,
+ "endColumn": 102,
+ "endOffset": 1717
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1493,
+ "endColumn": 103,
+ "endOffset": 1592
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1722,
+ "endColumn": 103,
+ "endOffset": 1821
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1597,
+ "endColumn": 118,
+ "endOffset": 1711
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1826,
+ "endColumn": 118,
+ "endOffset": 1940
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1716,
+ "endColumn": 99,
+ "endOffset": 1811
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1945,
+ "endColumn": 99,
+ "endOffset": 2040
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1816,
+ "endColumn": 100,
+ "endOffset": 1912
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2045,
+ "endColumn": 100,
+ "endOffset": 2141
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-es-rUS.json b/android/app/build/intermediates/blame/res/debug/multi/values-es-rUS.json
new file mode 100644
index 00000000..7b82b8be
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-es-rUS.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 119,
+ "endOffset": 170
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 119,
+ "endOffset": 399
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 175,
+ "endColumn": 107,
+ "endOffset": 278
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 404,
+ "endColumn": 107,
+ "endOffset": 507
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 283,
+ "endColumn": 122,
+ "endOffset": 401
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 512,
+ "endColumn": 122,
+ "endOffset": 630
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 406,
+ "endColumn": 108,
+ "endOffset": 510
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 635,
+ "endColumn": 108,
+ "endOffset": 739
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 515,
+ "endColumn": 107,
+ "endOffset": 618
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 744,
+ "endColumn": 107,
+ "endOffset": 847
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 623,
+ "endColumn": 84,
+ "endOffset": 703
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 852,
+ "endColumn": 84,
+ "endOffset": 932
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 708,
+ "endColumn": 100,
+ "endOffset": 804
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 937,
+ "endColumn": 100,
+ "endOffset": 1033
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 809,
+ "endColumn": 122,
+ "endOffset": 927
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1038,
+ "endColumn": 122,
+ "endOffset": 1156
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 932,
+ "endColumn": 81,
+ "endOffset": 1009
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1161,
+ "endColumn": 81,
+ "endOffset": 1238
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1014,
+ "endColumn": 111,
+ "endOffset": 1121
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1243,
+ "endColumn": 111,
+ "endOffset": 1350
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1126,
+ "endColumn": 111,
+ "endOffset": 1233
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1355,
+ "endColumn": 111,
+ "endOffset": 1462
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1238,
+ "endColumn": 100,
+ "endOffset": 1334
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1467,
+ "endColumn": 100,
+ "endOffset": 1563
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1339,
+ "endColumn": 107,
+ "endOffset": 1442
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1568,
+ "endColumn": 107,
+ "endOffset": 1671
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1447,
+ "endColumn": 106,
+ "endOffset": 1549
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1676,
+ "endColumn": 106,
+ "endOffset": 1778
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1554,
+ "endColumn": 106,
+ "endOffset": 1656
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1783,
+ "endColumn": 106,
+ "endOffset": 1885
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1661,
+ "endColumn": 121,
+ "endOffset": 1778
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1890,
+ "endColumn": 121,
+ "endOffset": 2007
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1783,
+ "endColumn": 99,
+ "endOffset": 1878
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2012,
+ "endColumn": 99,
+ "endOffset": 2107
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1883,
+ "endColumn": 100,
+ "endOffset": 1979
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2112,
+ "endColumn": 100,
+ "endOffset": 2208
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-es.json b/android/app/build/intermediates/blame/res/debug/multi/values-es.json
new file mode 100644
index 00000000..c3291292
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-es.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 116,
+ "endOffset": 167
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 116,
+ "endOffset": 392
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 172,
+ "endColumn": 107,
+ "endOffset": 275
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 397,
+ "endColumn": 107,
+ "endOffset": 500
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 122,
+ "endOffset": 398
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 505,
+ "endColumn": 122,
+ "endOffset": 623
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 403,
+ "endColumn": 112,
+ "endOffset": 511
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 628,
+ "endColumn": 112,
+ "endOffset": 736
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 516,
+ "endColumn": 107,
+ "endOffset": 619
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 741,
+ "endColumn": 107,
+ "endOffset": 844
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 624,
+ "endColumn": 84,
+ "endOffset": 704
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 849,
+ "endColumn": 84,
+ "endOffset": 929
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 709,
+ "endColumn": 100,
+ "endOffset": 805
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 934,
+ "endColumn": 100,
+ "endOffset": 1030
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 810,
+ "endColumn": 127,
+ "endOffset": 933
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1035,
+ "endColumn": 127,
+ "endOffset": 1158
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 938,
+ "endColumn": 81,
+ "endOffset": 1015
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1163,
+ "endColumn": 81,
+ "endOffset": 1240
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1020,
+ "endColumn": 106,
+ "endOffset": 1122
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1245,
+ "endColumn": 106,
+ "endOffset": 1347
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1127,
+ "endColumn": 99,
+ "endOffset": 1222
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1352,
+ "endColumn": 99,
+ "endOffset": 1447
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1227,
+ "endColumn": 98,
+ "endOffset": 1321
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1452,
+ "endColumn": 98,
+ "endOffset": 1546
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1326,
+ "endColumn": 107,
+ "endOffset": 1429
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1551,
+ "endColumn": 107,
+ "endOffset": 1654
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1434,
+ "endColumn": 106,
+ "endOffset": 1536
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1659,
+ "endColumn": 106,
+ "endOffset": 1761
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1541,
+ "endColumn": 106,
+ "endOffset": 1643
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1766,
+ "endColumn": 106,
+ "endOffset": 1868
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1648,
+ "endColumn": 121,
+ "endOffset": 1765
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1873,
+ "endColumn": 121,
+ "endOffset": 1990
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1770,
+ "endColumn": 99,
+ "endOffset": 1865
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1995,
+ "endColumn": 99,
+ "endOffset": 2090
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1870,
+ "endColumn": 100,
+ "endOffset": 1966
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2095,
+ "endColumn": 100,
+ "endOffset": 2191
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-et-rEE.json b/android/app/build/intermediates/blame/res/debug/multi/values-et-rEE.json
new file mode 100644
index 00000000..b759c150
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-et-rEE.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 116,
+ "endOffset": 167
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 116,
+ "endOffset": 396
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 172,
+ "endColumn": 107,
+ "endOffset": 275
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 401,
+ "endColumn": 107,
+ "endOffset": 504
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 122,
+ "endOffset": 398
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 509,
+ "endColumn": 122,
+ "endOffset": 627
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 403,
+ "endColumn": 106,
+ "endOffset": 505
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 632,
+ "endColumn": 106,
+ "endOffset": 734
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 510,
+ "endColumn": 110,
+ "endOffset": 616
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 739,
+ "endColumn": 110,
+ "endOffset": 845
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 621,
+ "endColumn": 85,
+ "endOffset": 702
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 850,
+ "endColumn": 85,
+ "endOffset": 931
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 707,
+ "endColumn": 101,
+ "endOffset": 804
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 936,
+ "endColumn": 101,
+ "endOffset": 1033
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 809,
+ "endColumn": 116,
+ "endOffset": 921
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1038,
+ "endColumn": 116,
+ "endOffset": 1150
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 926,
+ "endColumn": 82,
+ "endOffset": 1004
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1155,
+ "endColumn": 82,
+ "endOffset": 1233
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1009,
+ "endColumn": 110,
+ "endOffset": 1115
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1238,
+ "endColumn": 110,
+ "endOffset": 1344
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1120,
+ "endColumn": 104,
+ "endOffset": 1220
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1349,
+ "endColumn": 104,
+ "endOffset": 1449
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1225,
+ "endColumn": 98,
+ "endOffset": 1319
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1454,
+ "endColumn": 98,
+ "endOffset": 1548
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1324,
+ "endColumn": 109,
+ "endOffset": 1429
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1553,
+ "endColumn": 109,
+ "endOffset": 1658
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1434,
+ "endColumn": 100,
+ "endOffset": 1530
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1663,
+ "endColumn": 100,
+ "endOffset": 1759
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1535,
+ "endColumn": 102,
+ "endOffset": 1633
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1764,
+ "endColumn": 102,
+ "endOffset": 1862
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1638,
+ "endColumn": 127,
+ "endOffset": 1761
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1867,
+ "endColumn": 127,
+ "endOffset": 1990
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1766,
+ "endColumn": 101,
+ "endOffset": 1863
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1995,
+ "endColumn": 101,
+ "endOffset": 2092
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1868,
+ "endColumn": 100,
+ "endOffset": 1964
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2097,
+ "endColumn": 100,
+ "endOffset": 2193
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-eu-rES.json b/android/app/build/intermediates/blame/res/debug/multi/values-eu-rES.json
new file mode 100644
index 00000000..72330df4
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-eu-rES.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 108,
+ "endOffset": 159
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 108,
+ "endOffset": 388
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 164,
+ "endColumn": 107,
+ "endOffset": 267
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 393,
+ "endColumn": 107,
+ "endOffset": 496
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 272,
+ "endColumn": 122,
+ "endOffset": 390
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 501,
+ "endColumn": 122,
+ "endOffset": 619
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 395,
+ "endColumn": 97,
+ "endOffset": 488
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 624,
+ "endColumn": 97,
+ "endOffset": 717
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 493,
+ "endColumn": 109,
+ "endOffset": 598
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 722,
+ "endColumn": 109,
+ "endOffset": 827
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 603,
+ "endColumn": 85,
+ "endOffset": 684
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 832,
+ "endColumn": 85,
+ "endOffset": 913
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 689,
+ "endColumn": 105,
+ "endOffset": 790
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 918,
+ "endColumn": 105,
+ "endOffset": 1019
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 795,
+ "endColumn": 123,
+ "endOffset": 914
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1024,
+ "endColumn": 123,
+ "endOffset": 1143
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 919,
+ "endColumn": 81,
+ "endOffset": 996
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1148,
+ "endColumn": 81,
+ "endOffset": 1225
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1001,
+ "endColumn": 108,
+ "endOffset": 1105
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1230,
+ "endColumn": 108,
+ "endOffset": 1334
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1110,
+ "endColumn": 109,
+ "endOffset": 1215
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1339,
+ "endColumn": 109,
+ "endOffset": 1444
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1220,
+ "endColumn": 98,
+ "endOffset": 1314
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1449,
+ "endColumn": 98,
+ "endOffset": 1543
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1319,
+ "endColumn": 108,
+ "endOffset": 1423
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1548,
+ "endColumn": 108,
+ "endOffset": 1652
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1428,
+ "endColumn": 112,
+ "endOffset": 1536
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1657,
+ "endColumn": 112,
+ "endOffset": 1765
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1541,
+ "endColumn": 110,
+ "endOffset": 1647
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1770,
+ "endColumn": 110,
+ "endOffset": 1876
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1652,
+ "endColumn": 136,
+ "endOffset": 1784
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1881,
+ "endColumn": 136,
+ "endOffset": 2013
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1789,
+ "endColumn": 98,
+ "endOffset": 1883
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2018,
+ "endColumn": 98,
+ "endOffset": 2112
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1888,
+ "endColumn": 100,
+ "endOffset": 1984
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2117,
+ "endColumn": 100,
+ "endOffset": 2213
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-fa.json b/android/app/build/intermediates/blame/res/debug/multi/values-fa.json
new file mode 100644
index 00000000..e931dd37
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-fa.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 109,
+ "endOffset": 160
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 109,
+ "endOffset": 385
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 165,
+ "endColumn": 109,
+ "endOffset": 270
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 390,
+ "endColumn": 109,
+ "endOffset": 495
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 275,
+ "endColumn": 125,
+ "endOffset": 396
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 500,
+ "endColumn": 125,
+ "endOffset": 621
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 401,
+ "endColumn": 102,
+ "endOffset": 499
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 626,
+ "endColumn": 102,
+ "endOffset": 724
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 504,
+ "endColumn": 110,
+ "endOffset": 610
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 729,
+ "endColumn": 110,
+ "endOffset": 835
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 615,
+ "endColumn": 87,
+ "endOffset": 698
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 840,
+ "endColumn": 87,
+ "endOffset": 923
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 703,
+ "endColumn": 102,
+ "endOffset": 801
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 928,
+ "endColumn": 102,
+ "endOffset": 1026
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 806,
+ "endColumn": 114,
+ "endOffset": 916
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1031,
+ "endColumn": 114,
+ "endOffset": 1141
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 921,
+ "endColumn": 80,
+ "endOffset": 997
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1146,
+ "endColumn": 80,
+ "endOffset": 1222
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1002,
+ "endColumn": 111,
+ "endOffset": 1109
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1227,
+ "endColumn": 111,
+ "endOffset": 1334
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1114,
+ "endColumn": 102,
+ "endOffset": 1212
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1339,
+ "endColumn": 102,
+ "endOffset": 1437
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1217,
+ "endColumn": 97,
+ "endOffset": 1310
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1442,
+ "endColumn": 97,
+ "endOffset": 1535
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1315,
+ "endColumn": 109,
+ "endOffset": 1420
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1540,
+ "endColumn": 109,
+ "endOffset": 1645
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1425,
+ "endColumn": 102,
+ "endOffset": 1523
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1650,
+ "endColumn": 102,
+ "endOffset": 1748
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1528,
+ "endColumn": 108,
+ "endOffset": 1632
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1753,
+ "endColumn": 108,
+ "endOffset": 1857
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1637,
+ "endColumn": 124,
+ "endOffset": 1757
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1862,
+ "endColumn": 124,
+ "endOffset": 1982
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1762,
+ "endColumn": 100,
+ "endOffset": 1858
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1987,
+ "endColumn": 100,
+ "endOffset": 2083
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1863,
+ "endColumn": 100,
+ "endOffset": 1959
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2088,
+ "endColumn": 100,
+ "endOffset": 2184
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-fi.json b/android/app/build/intermediates/blame/res/debug/multi/values-fi.json
new file mode 100644
index 00000000..cf6def01
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-fi.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 107,
+ "endOffset": 158
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 107,
+ "endOffset": 383
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 163,
+ "endColumn": 107,
+ "endOffset": 266
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 388,
+ "endColumn": 107,
+ "endOffset": 491
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 271,
+ "endColumn": 122,
+ "endOffset": 389
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 496,
+ "endColumn": 122,
+ "endOffset": 614
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 394,
+ "endColumn": 99,
+ "endOffset": 489
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 619,
+ "endColumn": 99,
+ "endOffset": 714
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 494,
+ "endColumn": 100,
+ "endOffset": 590
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 719,
+ "endColumn": 100,
+ "endOffset": 815
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 595,
+ "endColumn": 85,
+ "endOffset": 676
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 820,
+ "endColumn": 85,
+ "endOffset": 901
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 681,
+ "endColumn": 104,
+ "endOffset": 781
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 906,
+ "endColumn": 104,
+ "endOffset": 1006
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 786,
+ "endColumn": 117,
+ "endOffset": 899
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1011,
+ "endColumn": 117,
+ "endOffset": 1124
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 904,
+ "endColumn": 79,
+ "endOffset": 979
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1129,
+ "endColumn": 79,
+ "endOffset": 1204
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 984,
+ "endColumn": 106,
+ "endOffset": 1086
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1209,
+ "endColumn": 106,
+ "endOffset": 1311
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1091,
+ "endColumn": 102,
+ "endOffset": 1189
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1316,
+ "endColumn": 102,
+ "endOffset": 1414
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1194,
+ "endColumn": 96,
+ "endOffset": 1286
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1419,
+ "endColumn": 96,
+ "endOffset": 1511
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1291,
+ "endColumn": 105,
+ "endOffset": 1392
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1516,
+ "endColumn": 105,
+ "endOffset": 1617
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1397,
+ "endColumn": 98,
+ "endOffset": 1491
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1622,
+ "endColumn": 98,
+ "endOffset": 1716
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1496,
+ "endColumn": 103,
+ "endOffset": 1595
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1721,
+ "endColumn": 103,
+ "endOffset": 1820
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1600,
+ "endColumn": 118,
+ "endOffset": 1714
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1825,
+ "endColumn": 118,
+ "endOffset": 1939
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1719,
+ "endColumn": 98,
+ "endOffset": 1813
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1944,
+ "endColumn": 98,
+ "endOffset": 2038
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1818,
+ "endColumn": 100,
+ "endOffset": 1914
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2043,
+ "endColumn": 100,
+ "endOffset": 2139
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-fr-rCA.json b/android/app/build/intermediates/blame/res/debug/multi/values-fr-rCA.json
new file mode 100644
index 00000000..58f9f768
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-fr-rCA.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 110,
+ "endOffset": 161
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 110,
+ "endOffset": 390
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 166,
+ "endColumn": 107,
+ "endOffset": 269
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 395,
+ "endColumn": 107,
+ "endOffset": 498
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 274,
+ "endColumn": 122,
+ "endOffset": 392
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 503,
+ "endColumn": 122,
+ "endOffset": 621
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 397,
+ "endColumn": 114,
+ "endOffset": 507
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 626,
+ "endColumn": 114,
+ "endOffset": 736
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 512,
+ "endColumn": 110,
+ "endOffset": 618
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 741,
+ "endColumn": 110,
+ "endOffset": 847
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 623,
+ "endColumn": 86,
+ "endOffset": 705
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 852,
+ "endColumn": 86,
+ "endOffset": 934
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 710,
+ "endColumn": 115,
+ "endOffset": 821
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 939,
+ "endColumn": 115,
+ "endOffset": 1050
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 826,
+ "endColumn": 129,
+ "endOffset": 951
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1055,
+ "endColumn": 129,
+ "endOffset": 1180
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 956,
+ "endColumn": 95,
+ "endOffset": 1047
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1185,
+ "endColumn": 95,
+ "endOffset": 1276
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1052,
+ "endColumn": 109,
+ "endOffset": 1157
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1281,
+ "endColumn": 109,
+ "endOffset": 1386
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1162,
+ "endColumn": 111,
+ "endOffset": 1269
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1391,
+ "endColumn": 111,
+ "endOffset": 1498
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1274,
+ "endColumn": 102,
+ "endOffset": 1372
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1503,
+ "endColumn": 102,
+ "endOffset": 1601
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1377,
+ "endColumn": 110,
+ "endOffset": 1483
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1606,
+ "endColumn": 110,
+ "endOffset": 1712
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1488,
+ "endColumn": 106,
+ "endOffset": 1590
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1717,
+ "endColumn": 106,
+ "endOffset": 1819
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1595,
+ "endColumn": 101,
+ "endOffset": 1692
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1824,
+ "endColumn": 101,
+ "endOffset": 1921
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1697,
+ "endColumn": 121,
+ "endOffset": 1814
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1926,
+ "endColumn": 121,
+ "endOffset": 2043
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1819,
+ "endColumn": 98,
+ "endOffset": 1913
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2048,
+ "endColumn": 98,
+ "endOffset": 2142
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1918,
+ "endColumn": 100,
+ "endOffset": 2014
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2147,
+ "endColumn": 100,
+ "endOffset": 2243
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-fr.json b/android/app/build/intermediates/blame/res/debug/multi/values-fr.json
new file mode 100644
index 00000000..21b17dc1
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-fr.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 110,
+ "endOffset": 161
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 110,
+ "endOffset": 386
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 166,
+ "endColumn": 107,
+ "endOffset": 269
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 391,
+ "endColumn": 107,
+ "endOffset": 494
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 274,
+ "endColumn": 122,
+ "endOffset": 392
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 499,
+ "endColumn": 122,
+ "endOffset": 617
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 397,
+ "endColumn": 114,
+ "endOffset": 507
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 622,
+ "endColumn": 114,
+ "endOffset": 732
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 512,
+ "endColumn": 110,
+ "endOffset": 618
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 737,
+ "endColumn": 110,
+ "endOffset": 843
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 623,
+ "endColumn": 81,
+ "endOffset": 700
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 848,
+ "endColumn": 81,
+ "endOffset": 925
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 705,
+ "endColumn": 105,
+ "endOffset": 806
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 930,
+ "endColumn": 105,
+ "endOffset": 1031
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 811,
+ "endColumn": 129,
+ "endOffset": 936
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1036,
+ "endColumn": 129,
+ "endOffset": 1161
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 941,
+ "endColumn": 85,
+ "endOffset": 1022
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1166,
+ "endColumn": 85,
+ "endOffset": 1247
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1027,
+ "endColumn": 109,
+ "endOffset": 1132
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1252,
+ "endColumn": 109,
+ "endOffset": 1357
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1137,
+ "endColumn": 111,
+ "endOffset": 1244
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1362,
+ "endColumn": 111,
+ "endOffset": 1469
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1249,
+ "endColumn": 102,
+ "endOffset": 1347
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1474,
+ "endColumn": 102,
+ "endOffset": 1572
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1352,
+ "endColumn": 110,
+ "endOffset": 1458
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1577,
+ "endColumn": 110,
+ "endOffset": 1683
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1463,
+ "endColumn": 106,
+ "endOffset": 1565
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1688,
+ "endColumn": 106,
+ "endOffset": 1790
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1570,
+ "endColumn": 106,
+ "endOffset": 1672
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1795,
+ "endColumn": 106,
+ "endOffset": 1897
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1677,
+ "endColumn": 121,
+ "endOffset": 1794
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1902,
+ "endColumn": 121,
+ "endOffset": 2019
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1799,
+ "endColumn": 98,
+ "endOffset": 1893
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2024,
+ "endColumn": 98,
+ "endOffset": 2118
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1898,
+ "endColumn": 100,
+ "endOffset": 1994
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2123,
+ "endColumn": 100,
+ "endOffset": 2219
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-gl-rES.json b/android/app/build/intermediates/blame/res/debug/multi/values-gl-rES.json
new file mode 100644
index 00000000..ffa3387b
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-gl-rES.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 111,
+ "endOffset": 162
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 111,
+ "endOffset": 391
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 167,
+ "endColumn": 107,
+ "endOffset": 270
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 396,
+ "endColumn": 107,
+ "endOffset": 499
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 275,
+ "endColumn": 122,
+ "endOffset": 393
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 504,
+ "endColumn": 122,
+ "endOffset": 622
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 398,
+ "endColumn": 111,
+ "endOffset": 505
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 627,
+ "endColumn": 111,
+ "endOffset": 734
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 510,
+ "endColumn": 107,
+ "endOffset": 613
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 739,
+ "endColumn": 107,
+ "endOffset": 842
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 618,
+ "endColumn": 84,
+ "endOffset": 698
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 847,
+ "endColumn": 84,
+ "endOffset": 927
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 703,
+ "endColumn": 101,
+ "endOffset": 800
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 932,
+ "endColumn": 101,
+ "endOffset": 1029
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 805,
+ "endColumn": 125,
+ "endOffset": 926
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1034,
+ "endColumn": 125,
+ "endOffset": 1155
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 931,
+ "endColumn": 81,
+ "endOffset": 1008
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1160,
+ "endColumn": 81,
+ "endOffset": 1237
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1013,
+ "endColumn": 106,
+ "endOffset": 1115
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1242,
+ "endColumn": 106,
+ "endOffset": 1344
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1120,
+ "endColumn": 108,
+ "endOffset": 1224
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1349,
+ "endColumn": 108,
+ "endOffset": 1453
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1229,
+ "endColumn": 98,
+ "endOffset": 1323
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1458,
+ "endColumn": 98,
+ "endOffset": 1552
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1328,
+ "endColumn": 107,
+ "endOffset": 1431
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1557,
+ "endColumn": 107,
+ "endOffset": 1660
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1436,
+ "endColumn": 102,
+ "endOffset": 1534
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1665,
+ "endColumn": 102,
+ "endOffset": 1763
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1539,
+ "endColumn": 106,
+ "endOffset": 1641
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1768,
+ "endColumn": 106,
+ "endOffset": 1870
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1646,
+ "endColumn": 121,
+ "endOffset": 1763
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1875,
+ "endColumn": 121,
+ "endOffset": 1992
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1768,
+ "endColumn": 99,
+ "endOffset": 1863
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1997,
+ "endColumn": 99,
+ "endOffset": 2092
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1868,
+ "endColumn": 100,
+ "endOffset": 1964
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2097,
+ "endColumn": 100,
+ "endOffset": 2193
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-gu-rIN.json b/android/app/build/intermediates/blame/res/debug/multi/values-gu-rIN.json
new file mode 100644
index 00000000..79996166
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-gu-rIN.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 108,
+ "endOffset": 159
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 108,
+ "endOffset": 388
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 164,
+ "endColumn": 107,
+ "endOffset": 267
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 393,
+ "endColumn": 107,
+ "endOffset": 496
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 272,
+ "endColumn": 122,
+ "endOffset": 390
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 501,
+ "endColumn": 122,
+ "endOffset": 619
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 395,
+ "endColumn": 103,
+ "endOffset": 494
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 624,
+ "endColumn": 103,
+ "endOffset": 723
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 499,
+ "endColumn": 106,
+ "endOffset": 601
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 728,
+ "endColumn": 106,
+ "endOffset": 830
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 606,
+ "endColumn": 86,
+ "endOffset": 688
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 835,
+ "endColumn": 86,
+ "endOffset": 917
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 693,
+ "endColumn": 100,
+ "endOffset": 789
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 922,
+ "endColumn": 100,
+ "endOffset": 1018
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 794,
+ "endColumn": 122,
+ "endOffset": 912
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1023,
+ "endColumn": 122,
+ "endOffset": 1141
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 917,
+ "endColumn": 79,
+ "endOffset": 992
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1146,
+ "endColumn": 79,
+ "endOffset": 1221
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 997,
+ "endColumn": 105,
+ "endOffset": 1098
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1226,
+ "endColumn": 105,
+ "endOffset": 1327
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1103,
+ "endColumn": 101,
+ "endOffset": 1200
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1332,
+ "endColumn": 101,
+ "endOffset": 1429
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1205,
+ "endColumn": 96,
+ "endOffset": 1297
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1434,
+ "endColumn": 96,
+ "endOffset": 1526
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1302,
+ "endColumn": 108,
+ "endOffset": 1406
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1531,
+ "endColumn": 108,
+ "endOffset": 1635
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1411,
+ "endColumn": 98,
+ "endOffset": 1505
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1640,
+ "endColumn": 98,
+ "endOffset": 1734
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1510,
+ "endColumn": 109,
+ "endOffset": 1615
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1739,
+ "endColumn": 109,
+ "endOffset": 1844
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1620,
+ "endColumn": 120,
+ "endOffset": 1736
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1849,
+ "endColumn": 120,
+ "endOffset": 1965
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1741,
+ "endColumn": 102,
+ "endOffset": 1839
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1970,
+ "endColumn": 102,
+ "endOffset": 2068
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1844,
+ "endColumn": 100,
+ "endOffset": 1940
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2073,
+ "endColumn": 100,
+ "endOffset": 2169
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json b/android/app/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json
new file mode 100644
index 00000000..df58d834
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json
@@ -0,0 +1,26 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 66,
+ "endOffset": 117
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-h720dp/values-h720dp.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 283,
+ "endColumn": 66,
+ "endOffset": 345
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json b/android/app/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json
new file mode 100644
index 00000000..b0c53fcd
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json
@@ -0,0 +1,28 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endLine": 6,
+ "endColumn": 13,
+ "endOffset": 327
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hdpi/values-hdpi.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 286,
+ "endLine": 8,
+ "endColumn": 13,
+ "endOffset": 558
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-hi.json b/android/app/build/intermediates/blame/res/debug/multi/values-hi.json
new file mode 100644
index 00000000..b3604941
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-hi.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 116,
+ "endOffset": 167
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 116,
+ "endOffset": 392
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 172,
+ "endColumn": 107,
+ "endOffset": 275
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 397,
+ "endColumn": 107,
+ "endOffset": 500
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 122,
+ "endOffset": 398
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 505,
+ "endColumn": 122,
+ "endOffset": 623
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 403,
+ "endColumn": 104,
+ "endOffset": 503
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 628,
+ "endColumn": 104,
+ "endOffset": 728
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 508,
+ "endColumn": 106,
+ "endOffset": 610
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 733,
+ "endColumn": 106,
+ "endOffset": 835
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 615,
+ "endColumn": 84,
+ "endOffset": 695
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 840,
+ "endColumn": 84,
+ "endOffset": 920
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 700,
+ "endColumn": 101,
+ "endOffset": 797
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 925,
+ "endColumn": 101,
+ "endOffset": 1022
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 802,
+ "endColumn": 121,
+ "endOffset": 919
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1027,
+ "endColumn": 121,
+ "endOffset": 1144
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 924,
+ "endColumn": 89,
+ "endOffset": 1009
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1149,
+ "endColumn": 89,
+ "endOffset": 1234
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1014,
+ "endColumn": 108,
+ "endOffset": 1118
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1239,
+ "endColumn": 108,
+ "endOffset": 1343
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1123,
+ "endColumn": 101,
+ "endOffset": 1220
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1348,
+ "endColumn": 101,
+ "endOffset": 1445
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1225,
+ "endColumn": 97,
+ "endOffset": 1318
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1450,
+ "endColumn": 97,
+ "endOffset": 1543
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1323,
+ "endColumn": 109,
+ "endOffset": 1428
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1548,
+ "endColumn": 109,
+ "endOffset": 1653
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1433,
+ "endColumn": 99,
+ "endOffset": 1528
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1658,
+ "endColumn": 99,
+ "endOffset": 1753
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1533,
+ "endColumn": 114,
+ "endOffset": 1643
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1758,
+ "endColumn": 114,
+ "endOffset": 1868
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1648,
+ "endColumn": 124,
+ "endOffset": 1768
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1873,
+ "endColumn": 124,
+ "endOffset": 1993
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1773,
+ "endColumn": 105,
+ "endOffset": 1874
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1998,
+ "endColumn": 105,
+ "endOffset": 2099
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1879,
+ "endColumn": 100,
+ "endOffset": 1975
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2104,
+ "endColumn": 100,
+ "endOffset": 2200
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-hr.json b/android/app/build/intermediates/blame/res/debug/multi/values-hr.json
new file mode 100644
index 00000000..8dfba6a6
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-hr.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 104,
+ "endOffset": 155
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 104,
+ "endOffset": 380
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 160,
+ "endColumn": 107,
+ "endOffset": 263
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 385,
+ "endColumn": 107,
+ "endOffset": 488
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 268,
+ "endColumn": 122,
+ "endOffset": 386
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 493,
+ "endColumn": 122,
+ "endOffset": 611
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 391,
+ "endColumn": 96,
+ "endOffset": 483
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 616,
+ "endColumn": 96,
+ "endOffset": 708
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 488,
+ "endColumn": 109,
+ "endOffset": 593
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 713,
+ "endColumn": 109,
+ "endOffset": 818
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 598,
+ "endColumn": 85,
+ "endOffset": 679
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 823,
+ "endColumn": 85,
+ "endOffset": 904
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 684,
+ "endColumn": 103,
+ "endOffset": 783
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 909,
+ "endColumn": 103,
+ "endOffset": 1008
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 788,
+ "endColumn": 118,
+ "endOffset": 902
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1013,
+ "endColumn": 118,
+ "endOffset": 1127
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 907,
+ "endColumn": 85,
+ "endOffset": 988
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1132,
+ "endColumn": 85,
+ "endOffset": 1213
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 993,
+ "endColumn": 103,
+ "endOffset": 1092
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1218,
+ "endColumn": 103,
+ "endOffset": 1317
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1097,
+ "endColumn": 112,
+ "endOffset": 1205
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1322,
+ "endColumn": 112,
+ "endOffset": 1430
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1210,
+ "endColumn": 105,
+ "endOffset": 1311
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1435,
+ "endColumn": 105,
+ "endOffset": 1536
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1316,
+ "endColumn": 104,
+ "endOffset": 1416
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1541,
+ "endColumn": 104,
+ "endOffset": 1641
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1421,
+ "endColumn": 112,
+ "endOffset": 1529
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1646,
+ "endColumn": 112,
+ "endOffset": 1754
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1534,
+ "endColumn": 106,
+ "endOffset": 1636
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1759,
+ "endColumn": 106,
+ "endOffset": 1861
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1641,
+ "endColumn": 122,
+ "endOffset": 1759
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1866,
+ "endColumn": 122,
+ "endOffset": 1984
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1764,
+ "endColumn": 96,
+ "endOffset": 1856
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1989,
+ "endColumn": 96,
+ "endOffset": 2081
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1861,
+ "endColumn": 100,
+ "endOffset": 1957
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2086,
+ "endColumn": 100,
+ "endOffset": 2182
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-hu.json b/android/app/build/intermediates/blame/res/debug/multi/values-hu.json
new file mode 100644
index 00000000..64181a05
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-hu.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 107,
+ "endOffset": 158
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 107,
+ "endOffset": 383
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 163,
+ "endColumn": 107,
+ "endOffset": 266
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 388,
+ "endColumn": 107,
+ "endOffset": 491
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 271,
+ "endColumn": 122,
+ "endOffset": 389
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 496,
+ "endColumn": 122,
+ "endOffset": 614
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 394,
+ "endColumn": 104,
+ "endOffset": 494
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 619,
+ "endColumn": 104,
+ "endOffset": 719
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 499,
+ "endColumn": 114,
+ "endOffset": 609
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 724,
+ "endColumn": 114,
+ "endOffset": 834
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 614,
+ "endColumn": 83,
+ "endOffset": 693
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 839,
+ "endColumn": 83,
+ "endOffset": 918
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 698,
+ "endColumn": 111,
+ "endOffset": 805
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 923,
+ "endColumn": 111,
+ "endOffset": 1030
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 810,
+ "endColumn": 129,
+ "endOffset": 935
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1035,
+ "endColumn": 129,
+ "endOffset": 1160
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 940,
+ "endColumn": 82,
+ "endOffset": 1018
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1165,
+ "endColumn": 82,
+ "endOffset": 1243
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1023,
+ "endColumn": 109,
+ "endOffset": 1128
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1248,
+ "endColumn": 109,
+ "endOffset": 1353
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1133,
+ "endColumn": 110,
+ "endOffset": 1239
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1358,
+ "endColumn": 110,
+ "endOffset": 1464
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1244,
+ "endColumn": 99,
+ "endOffset": 1339
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1469,
+ "endColumn": 99,
+ "endOffset": 1564
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1344,
+ "endColumn": 110,
+ "endOffset": 1450
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1569,
+ "endColumn": 110,
+ "endOffset": 1675
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1455,
+ "endColumn": 107,
+ "endOffset": 1558
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1680,
+ "endColumn": 107,
+ "endOffset": 1783
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1563,
+ "endColumn": 118,
+ "endOffset": 1677
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1788,
+ "endColumn": 118,
+ "endOffset": 1902
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1682,
+ "endColumn": 133,
+ "endOffset": 1811
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1907,
+ "endColumn": 133,
+ "endOffset": 2036
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1816,
+ "endColumn": 102,
+ "endOffset": 1914
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2041,
+ "endColumn": 102,
+ "endOffset": 2139
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1919,
+ "endColumn": 100,
+ "endOffset": 2015
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2144,
+ "endColumn": 100,
+ "endOffset": 2240
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-hy-rAM.json b/android/app/build/intermediates/blame/res/debug/multi/values-hy-rAM.json
new file mode 100644
index 00000000..a68f0823
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-hy-rAM.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 102,
+ "endOffset": 153
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 102,
+ "endOffset": 382
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 158,
+ "endColumn": 107,
+ "endOffset": 261
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 387,
+ "endColumn": 107,
+ "endOffset": 490
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 266,
+ "endColumn": 122,
+ "endOffset": 384
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 495,
+ "endColumn": 122,
+ "endOffset": 613
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 389,
+ "endColumn": 100,
+ "endOffset": 485
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 618,
+ "endColumn": 100,
+ "endOffset": 714
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 490,
+ "endColumn": 109,
+ "endOffset": 595
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 719,
+ "endColumn": 109,
+ "endOffset": 824
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 600,
+ "endColumn": 89,
+ "endOffset": 685
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 829,
+ "endColumn": 89,
+ "endOffset": 914
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 690,
+ "endColumn": 105,
+ "endOffset": 791
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 919,
+ "endColumn": 105,
+ "endOffset": 1020
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 796,
+ "endColumn": 114,
+ "endOffset": 906
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1025,
+ "endColumn": 114,
+ "endOffset": 1135
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 911,
+ "endColumn": 84,
+ "endOffset": 991
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1140,
+ "endColumn": 84,
+ "endOffset": 1220
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 996,
+ "endColumn": 106,
+ "endOffset": 1098
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1225,
+ "endColumn": 106,
+ "endOffset": 1327
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1103,
+ "endColumn": 106,
+ "endOffset": 1205
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1332,
+ "endColumn": 106,
+ "endOffset": 1434
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1210,
+ "endColumn": 98,
+ "endOffset": 1304
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1439,
+ "endColumn": 98,
+ "endOffset": 1533
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1309,
+ "endColumn": 109,
+ "endOffset": 1414
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1538,
+ "endColumn": 109,
+ "endOffset": 1643
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1419,
+ "endColumn": 106,
+ "endOffset": 1521
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1648,
+ "endColumn": 106,
+ "endOffset": 1750
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1526,
+ "endColumn": 100,
+ "endOffset": 1622
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1755,
+ "endColumn": 100,
+ "endOffset": 1851
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1627,
+ "endColumn": 119,
+ "endOffset": 1742
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1856,
+ "endColumn": 119,
+ "endOffset": 1971
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1747,
+ "endColumn": 98,
+ "endOffset": 1841
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1976,
+ "endColumn": 98,
+ "endOffset": 2070
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1846,
+ "endColumn": 100,
+ "endOffset": 1942
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2075,
+ "endColumn": 100,
+ "endOffset": 2171
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-in.json b/android/app/build/intermediates/blame/res/debug/multi/values-in.json
new file mode 100644
index 00000000..9b4f661e
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-in.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 109,
+ "endOffset": 160
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 109,
+ "endOffset": 385
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 165,
+ "endColumn": 107,
+ "endOffset": 268
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 390,
+ "endColumn": 107,
+ "endOffset": 493
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 273,
+ "endColumn": 122,
+ "endOffset": 391
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 498,
+ "endColumn": 122,
+ "endOffset": 616
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 396,
+ "endColumn": 101,
+ "endOffset": 493
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 621,
+ "endColumn": 101,
+ "endOffset": 718
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 498,
+ "endColumn": 104,
+ "endOffset": 598
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 723,
+ "endColumn": 104,
+ "endOffset": 823
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 603,
+ "endColumn": 86,
+ "endOffset": 685
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 828,
+ "endColumn": 86,
+ "endOffset": 910
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 690,
+ "endColumn": 103,
+ "endOffset": 789
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 915,
+ "endColumn": 103,
+ "endOffset": 1014
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 794,
+ "endColumn": 115,
+ "endOffset": 905
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1019,
+ "endColumn": 115,
+ "endOffset": 1130
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 910,
+ "endColumn": 85,
+ "endOffset": 991
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1135,
+ "endColumn": 85,
+ "endOffset": 1216
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 996,
+ "endColumn": 102,
+ "endOffset": 1094
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1221,
+ "endColumn": 102,
+ "endOffset": 1319
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1099,
+ "endColumn": 108,
+ "endOffset": 1203
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1324,
+ "endColumn": 108,
+ "endOffset": 1428
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1208,
+ "endColumn": 100,
+ "endOffset": 1304
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1433,
+ "endColumn": 100,
+ "endOffset": 1529
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1309,
+ "endColumn": 103,
+ "endOffset": 1408
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1534,
+ "endColumn": 103,
+ "endOffset": 1633
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1413,
+ "endColumn": 107,
+ "endOffset": 1516
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1638,
+ "endColumn": 107,
+ "endOffset": 1741
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1521,
+ "endColumn": 107,
+ "endOffset": 1624
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1746,
+ "endColumn": 107,
+ "endOffset": 1849
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1629,
+ "endColumn": 122,
+ "endOffset": 1747
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1854,
+ "endColumn": 122,
+ "endOffset": 1972
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1752,
+ "endColumn": 98,
+ "endOffset": 1846
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1977,
+ "endColumn": 98,
+ "endOffset": 2071
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1851,
+ "endColumn": 100,
+ "endOffset": 1947
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2076,
+ "endColumn": 100,
+ "endOffset": 2172
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-is-rIS.json b/android/app/build/intermediates/blame/res/debug/multi/values-is-rIS.json
new file mode 100644
index 00000000..d55a1073
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-is-rIS.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 99,
+ "endOffset": 150
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 99,
+ "endOffset": 379
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 155,
+ "endColumn": 107,
+ "endOffset": 258
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 384,
+ "endColumn": 107,
+ "endOffset": 487
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 263,
+ "endColumn": 122,
+ "endOffset": 381
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 492,
+ "endColumn": 122,
+ "endOffset": 610
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 386,
+ "endColumn": 96,
+ "endOffset": 478
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 615,
+ "endColumn": 96,
+ "endOffset": 707
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 483,
+ "endColumn": 111,
+ "endOffset": 590
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 712,
+ "endColumn": 111,
+ "endOffset": 819
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 595,
+ "endColumn": 84,
+ "endOffset": 675
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 824,
+ "endColumn": 84,
+ "endOffset": 904
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 680,
+ "endColumn": 100,
+ "endOffset": 776
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 909,
+ "endColumn": 100,
+ "endOffset": 1005
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 781,
+ "endColumn": 113,
+ "endOffset": 890
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1010,
+ "endColumn": 113,
+ "endOffset": 1119
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 895,
+ "endColumn": 80,
+ "endOffset": 971
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1124,
+ "endColumn": 80,
+ "endOffset": 1200
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 976,
+ "endColumn": 109,
+ "endOffset": 1081
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1205,
+ "endColumn": 109,
+ "endOffset": 1310
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1086,
+ "endColumn": 107,
+ "endOffset": 1189
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1315,
+ "endColumn": 107,
+ "endOffset": 1418
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1194,
+ "endColumn": 97,
+ "endOffset": 1287
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1423,
+ "endColumn": 97,
+ "endOffset": 1516
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1292,
+ "endColumn": 108,
+ "endOffset": 1396
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1521,
+ "endColumn": 108,
+ "endOffset": 1625
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1401,
+ "endColumn": 98,
+ "endOffset": 1495
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1630,
+ "endColumn": 98,
+ "endOffset": 1724
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1500,
+ "endColumn": 102,
+ "endOffset": 1598
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1729,
+ "endColumn": 102,
+ "endOffset": 1827
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1603,
+ "endColumn": 117,
+ "endOffset": 1716
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1832,
+ "endColumn": 117,
+ "endOffset": 1945
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1721,
+ "endColumn": 97,
+ "endOffset": 1814
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1950,
+ "endColumn": 97,
+ "endOffset": 2043
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1819,
+ "endColumn": 100,
+ "endOffset": 1915
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2048,
+ "endColumn": 100,
+ "endOffset": 2144
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-it.json b/android/app/build/intermediates/blame/res/debug/multi/values-it.json
new file mode 100644
index 00000000..9ecc5201
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-it.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 108,
+ "endOffset": 159
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 108,
+ "endOffset": 384
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 164,
+ "endColumn": 107,
+ "endOffset": 267
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 389,
+ "endColumn": 107,
+ "endOffset": 492
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 272,
+ "endColumn": 122,
+ "endOffset": 390
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 497,
+ "endColumn": 122,
+ "endOffset": 615
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 395,
+ "endColumn": 99,
+ "endOffset": 490
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 620,
+ "endColumn": 99,
+ "endOffset": 715
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 495,
+ "endColumn": 108,
+ "endOffset": 599
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 720,
+ "endColumn": 108,
+ "endOffset": 824
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 604,
+ "endColumn": 83,
+ "endOffset": 683
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 829,
+ "endColumn": 83,
+ "endOffset": 908
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 688,
+ "endColumn": 108,
+ "endOffset": 792
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 913,
+ "endColumn": 108,
+ "endOffset": 1017
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 797,
+ "endColumn": 124,
+ "endOffset": 917
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1022,
+ "endColumn": 124,
+ "endOffset": 1142
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 922,
+ "endColumn": 80,
+ "endOffset": 998
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1147,
+ "endColumn": 80,
+ "endOffset": 1223
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1003,
+ "endColumn": 105,
+ "endOffset": 1104
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1228,
+ "endColumn": 105,
+ "endOffset": 1329
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1109,
+ "endColumn": 107,
+ "endOffset": 1212
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1334,
+ "endColumn": 107,
+ "endOffset": 1437
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1217,
+ "endColumn": 97,
+ "endOffset": 1310
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1442,
+ "endColumn": 97,
+ "endOffset": 1535
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1315,
+ "endColumn": 103,
+ "endOffset": 1414
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1540,
+ "endColumn": 103,
+ "endOffset": 1639
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1419,
+ "endColumn": 104,
+ "endOffset": 1519
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1644,
+ "endColumn": 104,
+ "endOffset": 1744
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1524,
+ "endColumn": 106,
+ "endOffset": 1626
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1749,
+ "endColumn": 106,
+ "endOffset": 1851
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1631,
+ "endColumn": 121,
+ "endOffset": 1748
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1856,
+ "endColumn": 121,
+ "endOffset": 1973
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1753,
+ "endColumn": 99,
+ "endOffset": 1848
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1978,
+ "endColumn": 99,
+ "endOffset": 2073
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1853,
+ "endColumn": 100,
+ "endOffset": 1949
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2078,
+ "endColumn": 100,
+ "endOffset": 2174
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-iw.json b/android/app/build/intermediates/blame/res/debug/multi/values-iw.json
new file mode 100644
index 00000000..9b30b1be
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-iw.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 103,
+ "endOffset": 154
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 103,
+ "endOffset": 379
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 159,
+ "endColumn": 109,
+ "endOffset": 264
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 384,
+ "endColumn": 109,
+ "endOffset": 489
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 269,
+ "endColumn": 125,
+ "endOffset": 390
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 494,
+ "endColumn": 125,
+ "endOffset": 615
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 395,
+ "endColumn": 98,
+ "endOffset": 489
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 620,
+ "endColumn": 98,
+ "endOffset": 714
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 494,
+ "endColumn": 107,
+ "endOffset": 597
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 719,
+ "endColumn": 107,
+ "endOffset": 822
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 602,
+ "endColumn": 83,
+ "endOffset": 681
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 827,
+ "endColumn": 83,
+ "endOffset": 906
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 686,
+ "endColumn": 99,
+ "endOffset": 781
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 911,
+ "endColumn": 99,
+ "endOffset": 1006
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 786,
+ "endColumn": 113,
+ "endOffset": 895
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1011,
+ "endColumn": 113,
+ "endOffset": 1120
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 900,
+ "endColumn": 78,
+ "endOffset": 974
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1125,
+ "endColumn": 78,
+ "endOffset": 1199
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 979,
+ "endColumn": 101,
+ "endOffset": 1076
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1204,
+ "endColumn": 101,
+ "endOffset": 1301
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1081,
+ "endColumn": 103,
+ "endOffset": 1180
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1306,
+ "endColumn": 103,
+ "endOffset": 1405
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1185,
+ "endColumn": 95,
+ "endOffset": 1276
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1410,
+ "endColumn": 95,
+ "endOffset": 1501
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1281,
+ "endColumn": 102,
+ "endOffset": 1379
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1506,
+ "endColumn": 102,
+ "endOffset": 1604
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1384,
+ "endColumn": 100,
+ "endOffset": 1480
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1609,
+ "endColumn": 100,
+ "endOffset": 1705
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1485,
+ "endColumn": 99,
+ "endOffset": 1580
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1710,
+ "endColumn": 99,
+ "endOffset": 1805
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1585,
+ "endColumn": 115,
+ "endOffset": 1696
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1810,
+ "endColumn": 115,
+ "endOffset": 1921
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1701,
+ "endColumn": 95,
+ "endOffset": 1792
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1926,
+ "endColumn": 95,
+ "endOffset": 2017
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1797,
+ "endColumn": 102,
+ "endOffset": 1895
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2022,
+ "endColumn": 102,
+ "endOffset": 2120
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ja.json b/android/app/build/intermediates/blame/res/debug/multi/values-ja.json
new file mode 100644
index 00000000..0b923e55
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ja.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 96,
+ "endOffset": 147
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 96,
+ "endOffset": 372
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 152,
+ "endColumn": 106,
+ "endOffset": 254
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 377,
+ "endColumn": 106,
+ "endOffset": 479
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 259,
+ "endColumn": 120,
+ "endOffset": 375
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 484,
+ "endColumn": 120,
+ "endOffset": 600
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 380,
+ "endColumn": 92,
+ "endOffset": 468
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 605,
+ "endColumn": 92,
+ "endOffset": 693
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 473,
+ "endColumn": 104,
+ "endOffset": 573
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 698,
+ "endColumn": 104,
+ "endOffset": 798
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 578,
+ "endColumn": 81,
+ "endOffset": 655
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 803,
+ "endColumn": 81,
+ "endOffset": 880
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 660,
+ "endColumn": 97,
+ "endOffset": 753
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 885,
+ "endColumn": 97,
+ "endOffset": 978
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 758,
+ "endColumn": 107,
+ "endOffset": 861
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 983,
+ "endColumn": 107,
+ "endOffset": 1086
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 866,
+ "endColumn": 77,
+ "endOffset": 939
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1091,
+ "endColumn": 77,
+ "endOffset": 1164
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 944,
+ "endColumn": 101,
+ "endOffset": 1041
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1169,
+ "endColumn": 101,
+ "endOffset": 1266
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1046,
+ "endColumn": 98,
+ "endOffset": 1140
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1271,
+ "endColumn": 98,
+ "endOffset": 1365
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1145,
+ "endColumn": 94,
+ "endOffset": 1235
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1370,
+ "endColumn": 94,
+ "endOffset": 1460
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1240,
+ "endColumn": 102,
+ "endOffset": 1338
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1465,
+ "endColumn": 102,
+ "endOffset": 1563
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1343,
+ "endColumn": 94,
+ "endOffset": 1433
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1568,
+ "endColumn": 94,
+ "endOffset": 1658
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1438,
+ "endColumn": 95,
+ "endOffset": 1529
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1663,
+ "endColumn": 95,
+ "endOffset": 1754
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1534,
+ "endColumn": 110,
+ "endOffset": 1640
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1759,
+ "endColumn": 110,
+ "endOffset": 1865
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1645,
+ "endColumn": 96,
+ "endOffset": 1737
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1870,
+ "endColumn": 96,
+ "endOffset": 1962
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1742,
+ "endColumn": 100,
+ "endOffset": 1838
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 1967,
+ "endColumn": 100,
+ "endOffset": 2063
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ka-rGE.json b/android/app/build/intermediates/blame/res/debug/multi/values-ka-rGE.json
new file mode 100644
index 00000000..dcf78ced
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ka-rGE.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 108,
+ "endOffset": 159
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 108,
+ "endOffset": 388
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 164,
+ "endColumn": 107,
+ "endOffset": 267
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 393,
+ "endColumn": 107,
+ "endOffset": 496
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 272,
+ "endColumn": 122,
+ "endOffset": 390
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 501,
+ "endColumn": 122,
+ "endOffset": 619
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 395,
+ "endColumn": 103,
+ "endOffset": 494
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 624,
+ "endColumn": 103,
+ "endOffset": 723
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 499,
+ "endColumn": 110,
+ "endOffset": 605
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 728,
+ "endColumn": 110,
+ "endOffset": 834
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 610,
+ "endColumn": 87,
+ "endOffset": 693
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 839,
+ "endColumn": 87,
+ "endOffset": 922
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 698,
+ "endColumn": 104,
+ "endOffset": 798
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 927,
+ "endColumn": 104,
+ "endOffset": 1027
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 803,
+ "endColumn": 112,
+ "endOffset": 911
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1032,
+ "endColumn": 112,
+ "endOffset": 1140
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 916,
+ "endColumn": 82,
+ "endOffset": 994
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1145,
+ "endColumn": 82,
+ "endOffset": 1223
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 999,
+ "endColumn": 112,
+ "endOffset": 1107
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1228,
+ "endColumn": 112,
+ "endOffset": 1336
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1112,
+ "endColumn": 106,
+ "endOffset": 1214
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1341,
+ "endColumn": 106,
+ "endOffset": 1443
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1219,
+ "endColumn": 97,
+ "endOffset": 1312
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1448,
+ "endColumn": 97,
+ "endOffset": 1541
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1317,
+ "endColumn": 112,
+ "endOffset": 1425
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1546,
+ "endColumn": 112,
+ "endOffset": 1654
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1430,
+ "endColumn": 103,
+ "endOffset": 1529
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1659,
+ "endColumn": 103,
+ "endOffset": 1758
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1534,
+ "endColumn": 103,
+ "endOffset": 1633
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1763,
+ "endColumn": 103,
+ "endOffset": 1862
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1638,
+ "endColumn": 121,
+ "endOffset": 1755
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1867,
+ "endColumn": 121,
+ "endOffset": 1984
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1760,
+ "endColumn": 97,
+ "endOffset": 1853
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1989,
+ "endColumn": 97,
+ "endOffset": 2082
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1858,
+ "endColumn": 100,
+ "endOffset": 1954
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2087,
+ "endColumn": 100,
+ "endOffset": 2183
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json b/android/app/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json
new file mode 100644
index 00000000..2f622440
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 111,
+ "endOffset": 162
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 111,
+ "endOffset": 391
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 167,
+ "endColumn": 107,
+ "endOffset": 270
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 396,
+ "endColumn": 107,
+ "endOffset": 499
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 275,
+ "endColumn": 122,
+ "endOffset": 393
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 504,
+ "endColumn": 122,
+ "endOffset": 622
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 398,
+ "endColumn": 102,
+ "endOffset": 496
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 627,
+ "endColumn": 102,
+ "endOffset": 725
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 501,
+ "endColumn": 109,
+ "endOffset": 606
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 730,
+ "endColumn": 109,
+ "endOffset": 835
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 611,
+ "endColumn": 84,
+ "endOffset": 691
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 840,
+ "endColumn": 84,
+ "endOffset": 920
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 696,
+ "endColumn": 105,
+ "endOffset": 797
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 925,
+ "endColumn": 105,
+ "endOffset": 1026
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 802,
+ "endColumn": 118,
+ "endOffset": 916
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1031,
+ "endColumn": 118,
+ "endOffset": 1145
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 921,
+ "endColumn": 80,
+ "endOffset": 997
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1150,
+ "endColumn": 80,
+ "endOffset": 1226
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1002,
+ "endColumn": 102,
+ "endOffset": 1100
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1231,
+ "endColumn": 102,
+ "endOffset": 1329
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1105,
+ "endColumn": 104,
+ "endOffset": 1205
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1334,
+ "endColumn": 104,
+ "endOffset": 1434
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1210,
+ "endColumn": 97,
+ "endOffset": 1303
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1439,
+ "endColumn": 97,
+ "endOffset": 1532
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1308,
+ "endColumn": 106,
+ "endOffset": 1410
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1537,
+ "endColumn": 106,
+ "endOffset": 1639
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1415,
+ "endColumn": 108,
+ "endOffset": 1519
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1644,
+ "endColumn": 108,
+ "endOffset": 1748
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1524,
+ "endColumn": 99,
+ "endOffset": 1619
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1753,
+ "endColumn": 99,
+ "endOffset": 1848
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1624,
+ "endColumn": 114,
+ "endOffset": 1734
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1853,
+ "endColumn": 114,
+ "endOffset": 1963
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1739,
+ "endColumn": 98,
+ "endOffset": 1833
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1968,
+ "endColumn": 98,
+ "endOffset": 2062
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1838,
+ "endColumn": 100,
+ "endOffset": 1934
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2067,
+ "endColumn": 100,
+ "endOffset": 2163
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-km-rKH.json b/android/app/build/intermediates/blame/res/debug/multi/values-km-rKH.json
new file mode 100644
index 00000000..9e9a8462
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-km-rKH.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 102,
+ "endOffset": 153
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 102,
+ "endOffset": 382
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 158,
+ "endColumn": 107,
+ "endOffset": 261
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 387,
+ "endColumn": 107,
+ "endOffset": 490
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 266,
+ "endColumn": 122,
+ "endOffset": 384
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 495,
+ "endColumn": 122,
+ "endOffset": 613
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 389,
+ "endColumn": 99,
+ "endOffset": 484
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 618,
+ "endColumn": 99,
+ "endOffset": 713
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 489,
+ "endColumn": 111,
+ "endOffset": 596
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 718,
+ "endColumn": 111,
+ "endOffset": 825
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 601,
+ "endColumn": 86,
+ "endOffset": 683
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 830,
+ "endColumn": 86,
+ "endOffset": 912
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 688,
+ "endColumn": 103,
+ "endOffset": 787
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 917,
+ "endColumn": 103,
+ "endOffset": 1016
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 792,
+ "endColumn": 117,
+ "endOffset": 905
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1021,
+ "endColumn": 117,
+ "endOffset": 1134
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 910,
+ "endColumn": 82,
+ "endOffset": 988
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1139,
+ "endColumn": 82,
+ "endOffset": 1217
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 993,
+ "endColumn": 103,
+ "endOffset": 1092
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1222,
+ "endColumn": 103,
+ "endOffset": 1321
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1097,
+ "endColumn": 104,
+ "endOffset": 1197
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1326,
+ "endColumn": 104,
+ "endOffset": 1426
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1202,
+ "endColumn": 99,
+ "endOffset": 1297
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1431,
+ "endColumn": 99,
+ "endOffset": 1526
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1302,
+ "endColumn": 109,
+ "endOffset": 1407
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1531,
+ "endColumn": 109,
+ "endOffset": 1636
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1412,
+ "endColumn": 106,
+ "endOffset": 1514
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1641,
+ "endColumn": 106,
+ "endOffset": 1743
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1519,
+ "endColumn": 107,
+ "endOffset": 1622
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1748,
+ "endColumn": 107,
+ "endOffset": 1851
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1627,
+ "endColumn": 122,
+ "endOffset": 1745
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1856,
+ "endColumn": 122,
+ "endOffset": 1974
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1750,
+ "endColumn": 97,
+ "endOffset": 1843
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1979,
+ "endColumn": 97,
+ "endOffset": 2072
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1848,
+ "endColumn": 100,
+ "endOffset": 1944
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2077,
+ "endColumn": 100,
+ "endOffset": 2173
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-kn-rIN.json b/android/app/build/intermediates/blame/res/debug/multi/values-kn-rIN.json
new file mode 100644
index 00000000..3c4becb2
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-kn-rIN.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 117,
+ "endOffset": 168
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 117,
+ "endOffset": 397
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 173,
+ "endColumn": 107,
+ "endOffset": 276
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 402,
+ "endColumn": 107,
+ "endOffset": 505
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 281,
+ "endColumn": 122,
+ "endOffset": 399
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 510,
+ "endColumn": 122,
+ "endOffset": 628
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 404,
+ "endColumn": 111,
+ "endOffset": 511
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 633,
+ "endColumn": 111,
+ "endOffset": 740
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 516,
+ "endColumn": 112,
+ "endOffset": 624
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 745,
+ "endColumn": 112,
+ "endOffset": 853
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 629,
+ "endColumn": 87,
+ "endOffset": 712
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 858,
+ "endColumn": 87,
+ "endOffset": 941
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 717,
+ "endColumn": 106,
+ "endOffset": 819
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 946,
+ "endColumn": 106,
+ "endOffset": 1048
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 824,
+ "endColumn": 126,
+ "endOffset": 946
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1053,
+ "endColumn": 126,
+ "endOffset": 1175
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 951,
+ "endColumn": 81,
+ "endOffset": 1028
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1180,
+ "endColumn": 81,
+ "endOffset": 1257
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1033,
+ "endColumn": 115,
+ "endOffset": 1144
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1262,
+ "endColumn": 115,
+ "endOffset": 1373
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1149,
+ "endColumn": 110,
+ "endOffset": 1255
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1378,
+ "endColumn": 110,
+ "endOffset": 1484
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1260,
+ "endColumn": 98,
+ "endOffset": 1354
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1489,
+ "endColumn": 98,
+ "endOffset": 1583
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1359,
+ "endColumn": 112,
+ "endOffset": 1467
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1588,
+ "endColumn": 112,
+ "endOffset": 1696
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1472,
+ "endColumn": 103,
+ "endOffset": 1571
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1701,
+ "endColumn": 103,
+ "endOffset": 1800
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1576,
+ "endColumn": 113,
+ "endOffset": 1685
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1805,
+ "endColumn": 113,
+ "endOffset": 1914
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1690,
+ "endColumn": 125,
+ "endOffset": 1811
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1919,
+ "endColumn": 125,
+ "endOffset": 2040
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1816,
+ "endColumn": 99,
+ "endOffset": 1911
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2045,
+ "endColumn": 99,
+ "endOffset": 2140
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1916,
+ "endColumn": 100,
+ "endOffset": 2012
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2145,
+ "endColumn": 100,
+ "endOffset": 2241
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ko.json b/android/app/build/intermediates/blame/res/debug/multi/values-ko.json
new file mode 100644
index 00000000..61c02b85
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ko.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 94,
+ "endOffset": 145
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 94,
+ "endOffset": 370
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 150,
+ "endColumn": 107,
+ "endOffset": 253
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 375,
+ "endColumn": 107,
+ "endOffset": 478
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 258,
+ "endColumn": 122,
+ "endOffset": 376
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 483,
+ "endColumn": 122,
+ "endOffset": 601
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 381,
+ "endColumn": 93,
+ "endOffset": 470
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 606,
+ "endColumn": 93,
+ "endOffset": 695
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 475,
+ "endColumn": 101,
+ "endOffset": 572
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 700,
+ "endColumn": 101,
+ "endOffset": 797
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 577,
+ "endColumn": 81,
+ "endOffset": 654
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 802,
+ "endColumn": 81,
+ "endOffset": 879
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 659,
+ "endColumn": 97,
+ "endOffset": 752
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 884,
+ "endColumn": 97,
+ "endOffset": 977
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 757,
+ "endColumn": 105,
+ "endOffset": 858
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 982,
+ "endColumn": 105,
+ "endOffset": 1083
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 863,
+ "endColumn": 79,
+ "endOffset": 938
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1088,
+ "endColumn": 79,
+ "endOffset": 1163
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 943,
+ "endColumn": 97,
+ "endOffset": 1036
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1168,
+ "endColumn": 97,
+ "endOffset": 1261
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1041,
+ "endColumn": 94,
+ "endOffset": 1131
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1266,
+ "endColumn": 94,
+ "endOffset": 1356
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1136,
+ "endColumn": 94,
+ "endOffset": 1226
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1361,
+ "endColumn": 94,
+ "endOffset": 1451
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1231,
+ "endColumn": 99,
+ "endOffset": 1326
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1456,
+ "endColumn": 99,
+ "endOffset": 1551
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1331,
+ "endColumn": 95,
+ "endOffset": 1422
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1556,
+ "endColumn": 95,
+ "endOffset": 1647
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1427,
+ "endColumn": 98,
+ "endOffset": 1521
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1652,
+ "endColumn": 98,
+ "endOffset": 1746
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1526,
+ "endColumn": 114,
+ "endOffset": 1636
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1751,
+ "endColumn": 114,
+ "endOffset": 1861
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1641,
+ "endColumn": 93,
+ "endOffset": 1730
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1866,
+ "endColumn": 93,
+ "endOffset": 1955
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1735,
+ "endColumn": 100,
+ "endOffset": 1831
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 1960,
+ "endColumn": 100,
+ "endOffset": 2056
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ky-rKG.json b/android/app/build/intermediates/blame/res/debug/multi/values-ky-rKG.json
new file mode 100644
index 00000000..7c8a49cf
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ky-rKG.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 103,
+ "endOffset": 154
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 103,
+ "endOffset": 383
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 159,
+ "endColumn": 107,
+ "endOffset": 262
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 388,
+ "endColumn": 107,
+ "endOffset": 491
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 267,
+ "endColumn": 122,
+ "endOffset": 385
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 496,
+ "endColumn": 122,
+ "endOffset": 614
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 390,
+ "endColumn": 94,
+ "endOffset": 480
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 619,
+ "endColumn": 94,
+ "endOffset": 709
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 485,
+ "endColumn": 118,
+ "endOffset": 599
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 714,
+ "endColumn": 118,
+ "endOffset": 828
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 604,
+ "endColumn": 83,
+ "endOffset": 683
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 833,
+ "endColumn": 83,
+ "endOffset": 912
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 688,
+ "endColumn": 106,
+ "endOffset": 790
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 917,
+ "endColumn": 106,
+ "endOffset": 1019
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 795,
+ "endColumn": 116,
+ "endOffset": 907
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1024,
+ "endColumn": 116,
+ "endOffset": 1136
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 912,
+ "endColumn": 80,
+ "endOffset": 988
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1141,
+ "endColumn": 80,
+ "endOffset": 1217
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 993,
+ "endColumn": 109,
+ "endOffset": 1098
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1222,
+ "endColumn": 109,
+ "endOffset": 1327
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1103,
+ "endColumn": 106,
+ "endOffset": 1205
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1332,
+ "endColumn": 106,
+ "endOffset": 1434
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1210,
+ "endColumn": 97,
+ "endOffset": 1303
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1439,
+ "endColumn": 97,
+ "endOffset": 1532
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1308,
+ "endColumn": 105,
+ "endOffset": 1409
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1537,
+ "endColumn": 105,
+ "endOffset": 1638
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1414,
+ "endColumn": 106,
+ "endOffset": 1516
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1643,
+ "endColumn": 106,
+ "endOffset": 1745
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1521,
+ "endColumn": 100,
+ "endOffset": 1617
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1750,
+ "endColumn": 100,
+ "endOffset": 1846
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1622,
+ "endColumn": 123,
+ "endOffset": 1741
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1851,
+ "endColumn": 123,
+ "endOffset": 1970
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1746,
+ "endColumn": 102,
+ "endOffset": 1844
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1975,
+ "endColumn": 102,
+ "endOffset": 2073
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1849,
+ "endColumn": 100,
+ "endOffset": 1945
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2078,
+ "endColumn": 100,
+ "endOffset": 2174
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-land.json b/android/app/build/intermediates/blame/res/debug/multi/values-land.json
new file mode 100644
index 00000000..aa20fc63
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-land.json
@@ -0,0 +1,121 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 61,
+ "endOffset": 112
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 61,
+ "endOffset": 337
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 117,
+ "endColumn": 71,
+ "endOffset": 184
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 568,
+ "endColumn": 71,
+ "endOffset": 635
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 189,
+ "endColumn": 69,
+ "endOffset": 254
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 875,
+ "endColumn": 69,
+ "endOffset": 940
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 259,
+ "endColumn": 63,
+ "endOffset": 318
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1171,
+ "endColumn": 63,
+ "endOffset": 1230
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 323,
+ "endColumn": 70,
+ "endOffset": 389
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1470,
+ "endColumn": 70,
+ "endOffset": 1536
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 394,
+ "endColumn": 67,
+ "endOffset": 457
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1541,
+ "endColumn": 67,
+ "endOffset": 1604
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-large-v4.json b/android/app/build/intermediates/blame/res/debug/multi/values-large-v4.json
new file mode 100644
index 00000000..ff863dce
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-large-v4.json
@@ -0,0 +1,216 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 61,
+ "endOffset": 112
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 281,
+ "endColumn": 61,
+ "endOffset": 338
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 117,
+ "endColumn": 71,
+ "endOffset": 184
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 570,
+ "endColumn": 71,
+ "endOffset": 637
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 189,
+ "endColumn": 58,
+ "endOffset": 243
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 642,
+ "endColumn": 58,
+ "endOffset": 696
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 248,
+ "endColumn": 63,
+ "endOffset": 307
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 928,
+ "endColumn": 63,
+ "endOffset": 987
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 312,
+ "endColumn": 66,
+ "endOffset": 374
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 992,
+ "endColumn": 66,
+ "endOffset": 1054
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 379,
+ "endColumn": 66,
+ "endOffset": 441
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1059,
+ "endColumn": 66,
+ "endOffset": 1121
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 446,
+ "endColumn": 65,
+ "endOffset": 507
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1126,
+ "endColumn": 65,
+ "endOffset": 1187
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 512,
+ "endColumn": 65,
+ "endOffset": 573
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1192,
+ "endColumn": 65,
+ "endOffset": 1253
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 578,
+ "endColumn": 54,
+ "endOffset": 628
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1258,
+ "endColumn": 54,
+ "endOffset": 1308
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 633,
+ "endColumn": 103,
+ "endOffset": 732
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1545,
+ "endColumn": 103,
+ "endOffset": 1644
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 737,
+ "endColumn": 115,
+ "endOffset": 848
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1649,
+ "endColumn": 115,
+ "endOffset": 1760
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-lo-rLA.json b/android/app/build/intermediates/blame/res/debug/multi/values-lo-rLA.json
new file mode 100644
index 00000000..3db4ce07
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-lo-rLA.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 102,
+ "endOffset": 153
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 102,
+ "endOffset": 382
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 158,
+ "endColumn": 107,
+ "endOffset": 261
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 387,
+ "endColumn": 107,
+ "endOffset": 490
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 266,
+ "endColumn": 122,
+ "endOffset": 384
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 495,
+ "endColumn": 122,
+ "endOffset": 613
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 389,
+ "endColumn": 96,
+ "endOffset": 481
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 618,
+ "endColumn": 96,
+ "endOffset": 710
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 486,
+ "endColumn": 106,
+ "endOffset": 588
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 715,
+ "endColumn": 106,
+ "endOffset": 817
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 593,
+ "endColumn": 84,
+ "endOffset": 673
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 822,
+ "endColumn": 84,
+ "endOffset": 902
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 678,
+ "endColumn": 104,
+ "endOffset": 778
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 907,
+ "endColumn": 104,
+ "endOffset": 1007
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 783,
+ "endColumn": 111,
+ "endOffset": 890
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1012,
+ "endColumn": 111,
+ "endOffset": 1119
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 895,
+ "endColumn": 79,
+ "endOffset": 970
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1124,
+ "endColumn": 79,
+ "endOffset": 1199
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 975,
+ "endColumn": 106,
+ "endOffset": 1077
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1204,
+ "endColumn": 106,
+ "endOffset": 1306
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1082,
+ "endColumn": 96,
+ "endOffset": 1174
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1311,
+ "endColumn": 96,
+ "endOffset": 1403
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1179,
+ "endColumn": 97,
+ "endOffset": 1272
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1408,
+ "endColumn": 97,
+ "endOffset": 1501
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1277,
+ "endColumn": 104,
+ "endOffset": 1377
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1506,
+ "endColumn": 104,
+ "endOffset": 1606
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1382,
+ "endColumn": 102,
+ "endOffset": 1480
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1611,
+ "endColumn": 102,
+ "endOffset": 1709
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1485,
+ "endColumn": 103,
+ "endOffset": 1584
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1714,
+ "endColumn": 103,
+ "endOffset": 1813
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1589,
+ "endColumn": 121,
+ "endOffset": 1706
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1818,
+ "endColumn": 121,
+ "endOffset": 1935
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1711,
+ "endColumn": 95,
+ "endOffset": 1802
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1940,
+ "endColumn": 95,
+ "endOffset": 2031
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1807,
+ "endColumn": 100,
+ "endOffset": 1903
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2036,
+ "endColumn": 100,
+ "endOffset": 2132
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-lt.json b/android/app/build/intermediates/blame/res/debug/multi/values-lt.json
new file mode 100644
index 00000000..b5d2cd47
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-lt.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 115,
+ "endOffset": 166
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 115,
+ "endOffset": 391
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 171,
+ "endColumn": 107,
+ "endOffset": 274
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 396,
+ "endColumn": 107,
+ "endOffset": 499
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 279,
+ "endColumn": 122,
+ "endOffset": 397
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 504,
+ "endColumn": 122,
+ "endOffset": 622
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 402,
+ "endColumn": 100,
+ "endOffset": 498
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 627,
+ "endColumn": 100,
+ "endOffset": 723
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 503,
+ "endColumn": 112,
+ "endOffset": 611
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 728,
+ "endColumn": 112,
+ "endOffset": 836
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 616,
+ "endColumn": 86,
+ "endOffset": 698
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 841,
+ "endColumn": 86,
+ "endOffset": 923
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 703,
+ "endColumn": 108,
+ "endOffset": 807
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 928,
+ "endColumn": 108,
+ "endOffset": 1032
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 812,
+ "endColumn": 120,
+ "endOffset": 928
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1037,
+ "endColumn": 120,
+ "endOffset": 1153
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 933,
+ "endColumn": 84,
+ "endOffset": 1013
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1158,
+ "endColumn": 84,
+ "endOffset": 1238
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1018,
+ "endColumn": 108,
+ "endOffset": 1122
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1243,
+ "endColumn": 108,
+ "endOffset": 1347
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1127,
+ "endColumn": 108,
+ "endOffset": 1231
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1352,
+ "endColumn": 108,
+ "endOffset": 1456
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1236,
+ "endColumn": 99,
+ "endOffset": 1331
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1461,
+ "endColumn": 99,
+ "endOffset": 1556
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1336,
+ "endColumn": 109,
+ "endOffset": 1441
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1561,
+ "endColumn": 109,
+ "endOffset": 1666
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1446,
+ "endColumn": 103,
+ "endOffset": 1545
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1671,
+ "endColumn": 103,
+ "endOffset": 1770
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1550,
+ "endColumn": 112,
+ "endOffset": 1658
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1775,
+ "endColumn": 112,
+ "endOffset": 1883
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1663,
+ "endColumn": 129,
+ "endOffset": 1788
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1888,
+ "endColumn": 129,
+ "endOffset": 2013
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1793,
+ "endColumn": 100,
+ "endOffset": 1889
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2018,
+ "endColumn": 100,
+ "endOffset": 2114
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1894,
+ "endColumn": 100,
+ "endOffset": 1990
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2119,
+ "endColumn": 100,
+ "endOffset": 2215
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-lv.json b/android/app/build/intermediates/blame/res/debug/multi/values-lv.json
new file mode 100644
index 00000000..3fd981b5
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-lv.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 119,
+ "endOffset": 170
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 119,
+ "endOffset": 395
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 175,
+ "endColumn": 107,
+ "endOffset": 278
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 400,
+ "endColumn": 107,
+ "endOffset": 503
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 283,
+ "endColumn": 122,
+ "endOffset": 401
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 508,
+ "endColumn": 122,
+ "endOffset": 626
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 406,
+ "endColumn": 107,
+ "endOffset": 509
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 631,
+ "endColumn": 107,
+ "endOffset": 734
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 514,
+ "endColumn": 108,
+ "endOffset": 618
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 739,
+ "endColumn": 108,
+ "endOffset": 843
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 623,
+ "endColumn": 85,
+ "endOffset": 704
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 848,
+ "endColumn": 85,
+ "endOffset": 929
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 709,
+ "endColumn": 103,
+ "endOffset": 808
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 934,
+ "endColumn": 103,
+ "endOffset": 1033
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 813,
+ "endColumn": 121,
+ "endOffset": 930
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1038,
+ "endColumn": 121,
+ "endOffset": 1155
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 935,
+ "endColumn": 84,
+ "endOffset": 1015
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1160,
+ "endColumn": 84,
+ "endOffset": 1240
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1020,
+ "endColumn": 108,
+ "endOffset": 1124
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1245,
+ "endColumn": 108,
+ "endOffset": 1349
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1129,
+ "endColumn": 111,
+ "endOffset": 1236
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1354,
+ "endColumn": 111,
+ "endOffset": 1461
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1241,
+ "endColumn": 98,
+ "endOffset": 1335
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1466,
+ "endColumn": 98,
+ "endOffset": 1560
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1340,
+ "endColumn": 110,
+ "endOffset": 1446
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1565,
+ "endColumn": 110,
+ "endOffset": 1671
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1451,
+ "endColumn": 108,
+ "endOffset": 1555
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1676,
+ "endColumn": 108,
+ "endOffset": 1780
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1560,
+ "endColumn": 104,
+ "endOffset": 1660
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1785,
+ "endColumn": 104,
+ "endOffset": 1885
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1665,
+ "endColumn": 118,
+ "endOffset": 1779
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1890,
+ "endColumn": 118,
+ "endOffset": 2004
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1784,
+ "endColumn": 98,
+ "endOffset": 1878
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2009,
+ "endColumn": 98,
+ "endOffset": 2103
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1883,
+ "endColumn": 100,
+ "endOffset": 1979
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2108,
+ "endColumn": 100,
+ "endOffset": 2204
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-mk-rMK.json b/android/app/build/intermediates/blame/res/debug/multi/values-mk-rMK.json
new file mode 100644
index 00000000..75765132
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-mk-rMK.json
@@ -0,0 +1,311 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 107,
+ "endOffset": 158
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 107,
+ "endOffset": 387
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 163,
+ "endColumn": 122,
+ "endOffset": 281
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 392,
+ "endColumn": 122,
+ "endOffset": 510
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 286,
+ "endColumn": 103,
+ "endOffset": 385
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 515,
+ "endColumn": 103,
+ "endOffset": 614
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 390,
+ "endColumn": 107,
+ "endOffset": 493
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 619,
+ "endColumn": 107,
+ "endOffset": 722
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 498,
+ "endColumn": 85,
+ "endOffset": 579
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 727,
+ "endColumn": 85,
+ "endOffset": 808
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 584,
+ "endColumn": 104,
+ "endOffset": 684
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 813,
+ "endColumn": 104,
+ "endOffset": 913
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 689,
+ "endColumn": 118,
+ "endOffset": 803
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 918,
+ "endColumn": 118,
+ "endOffset": 1032
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 808,
+ "endColumn": 86,
+ "endOffset": 890
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1037,
+ "endColumn": 86,
+ "endOffset": 1119
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 895,
+ "endColumn": 105,
+ "endOffset": 996
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1124,
+ "endColumn": 105,
+ "endOffset": 1225
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1001,
+ "endColumn": 106,
+ "endOffset": 1103
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1230,
+ "endColumn": 106,
+ "endOffset": 1332
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1108,
+ "endColumn": 100,
+ "endOffset": 1204
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1337,
+ "endColumn": 100,
+ "endOffset": 1433
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1209,
+ "endColumn": 106,
+ "endOffset": 1311
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1438,
+ "endColumn": 106,
+ "endOffset": 1540
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1316,
+ "endColumn": 110,
+ "endOffset": 1422
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1545,
+ "endColumn": 110,
+ "endOffset": 1651
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1427,
+ "endColumn": 103,
+ "endOffset": 1526
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1656,
+ "endColumn": 103,
+ "endOffset": 1755
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1531,
+ "endColumn": 97,
+ "endOffset": 1624
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1760,
+ "endColumn": 97,
+ "endOffset": 1853
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1629,
+ "endColumn": 100,
+ "endOffset": 1725
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1858,
+ "endColumn": 100,
+ "endOffset": 1954
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ml-rIN.json b/android/app/build/intermediates/blame/res/debug/multi/values-ml-rIN.json
new file mode 100644
index 00000000..c0fa9dbe
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ml-rIN.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 118,
+ "endOffset": 169
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 118,
+ "endOffset": 398
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 174,
+ "endColumn": 107,
+ "endOffset": 277
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 403,
+ "endColumn": 107,
+ "endOffset": 506
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 282,
+ "endColumn": 122,
+ "endOffset": 400
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 511,
+ "endColumn": 122,
+ "endOffset": 629
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 405,
+ "endColumn": 117,
+ "endOffset": 518
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 634,
+ "endColumn": 117,
+ "endOffset": 747
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 523,
+ "endColumn": 115,
+ "endOffset": 634
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 752,
+ "endColumn": 115,
+ "endOffset": 863
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 639,
+ "endColumn": 92,
+ "endOffset": 727
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 868,
+ "endColumn": 92,
+ "endOffset": 956
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 732,
+ "endColumn": 104,
+ "endOffset": 832
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 961,
+ "endColumn": 104,
+ "endOffset": 1061
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 837,
+ "endColumn": 131,
+ "endOffset": 964
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1066,
+ "endColumn": 131,
+ "endOffset": 1193
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 969,
+ "endColumn": 81,
+ "endOffset": 1046
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1198,
+ "endColumn": 81,
+ "endOffset": 1275
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1051,
+ "endColumn": 110,
+ "endOffset": 1157
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1280,
+ "endColumn": 110,
+ "endOffset": 1386
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1162,
+ "endColumn": 105,
+ "endOffset": 1263
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1391,
+ "endColumn": 105,
+ "endOffset": 1492
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1268,
+ "endColumn": 97,
+ "endOffset": 1361
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1497,
+ "endColumn": 97,
+ "endOffset": 1590
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1366,
+ "endColumn": 113,
+ "endOffset": 1475
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1595,
+ "endColumn": 113,
+ "endOffset": 1704
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1480,
+ "endColumn": 100,
+ "endOffset": 1576
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1709,
+ "endColumn": 100,
+ "endOffset": 1805
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1581,
+ "endColumn": 110,
+ "endOffset": 1687
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1810,
+ "endColumn": 110,
+ "endOffset": 1916
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1692,
+ "endColumn": 127,
+ "endOffset": 1815
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1921,
+ "endColumn": 127,
+ "endOffset": 2044
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1820,
+ "endColumn": 100,
+ "endOffset": 1916
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2049,
+ "endColumn": 100,
+ "endOffset": 2145
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1921,
+ "endColumn": 100,
+ "endOffset": 2017
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2150,
+ "endColumn": 100,
+ "endOffset": 2246
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-mn-rMN.json b/android/app/build/intermediates/blame/res/debug/multi/values-mn-rMN.json
new file mode 100644
index 00000000..622a412c
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-mn-rMN.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 112,
+ "endOffset": 163
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 112,
+ "endOffset": 392
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 168,
+ "endColumn": 107,
+ "endOffset": 271
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 397,
+ "endColumn": 107,
+ "endOffset": 500
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 276,
+ "endColumn": 122,
+ "endOffset": 394
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 505,
+ "endColumn": 122,
+ "endOffset": 623
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 399,
+ "endColumn": 99,
+ "endOffset": 494
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 628,
+ "endColumn": 99,
+ "endOffset": 723
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 499,
+ "endColumn": 112,
+ "endOffset": 607
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 728,
+ "endColumn": 112,
+ "endOffset": 836
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 612,
+ "endColumn": 86,
+ "endOffset": 694
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 841,
+ "endColumn": 86,
+ "endOffset": 923
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 699,
+ "endColumn": 105,
+ "endOffset": 800
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 928,
+ "endColumn": 105,
+ "endOffset": 1029
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 805,
+ "endColumn": 111,
+ "endOffset": 912
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1034,
+ "endColumn": 111,
+ "endOffset": 1141
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 917,
+ "endColumn": 81,
+ "endOffset": 994
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1146,
+ "endColumn": 81,
+ "endOffset": 1223
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 999,
+ "endColumn": 108,
+ "endOffset": 1103
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1228,
+ "endColumn": 108,
+ "endOffset": 1332
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1108,
+ "endColumn": 103,
+ "endOffset": 1207
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1337,
+ "endColumn": 103,
+ "endOffset": 1436
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1212,
+ "endColumn": 96,
+ "endOffset": 1304
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1441,
+ "endColumn": 96,
+ "endOffset": 1533
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1309,
+ "endColumn": 107,
+ "endOffset": 1412
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1538,
+ "endColumn": 107,
+ "endOffset": 1641
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1417,
+ "endColumn": 100,
+ "endOffset": 1513
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1646,
+ "endColumn": 100,
+ "endOffset": 1742
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1518,
+ "endColumn": 102,
+ "endOffset": 1616
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1747,
+ "endColumn": 102,
+ "endOffset": 1845
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1621,
+ "endColumn": 121,
+ "endOffset": 1738
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1850,
+ "endColumn": 121,
+ "endOffset": 1967
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1743,
+ "endColumn": 96,
+ "endOffset": 1835
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1972,
+ "endColumn": 96,
+ "endOffset": 2064
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1840,
+ "endColumn": 100,
+ "endOffset": 1936
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2069,
+ "endColumn": 100,
+ "endOffset": 2165
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-mr-rIN.json b/android/app/build/intermediates/blame/res/debug/multi/values-mr-rIN.json
new file mode 100644
index 00000000..203402fe
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-mr-rIN.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 117,
+ "endOffset": 168
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 117,
+ "endOffset": 397
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 173,
+ "endColumn": 107,
+ "endOffset": 276
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 402,
+ "endColumn": 107,
+ "endOffset": 505
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 281,
+ "endColumn": 122,
+ "endOffset": 399
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 510,
+ "endColumn": 122,
+ "endOffset": 628
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 404,
+ "endColumn": 105,
+ "endOffset": 505
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 633,
+ "endColumn": 105,
+ "endOffset": 734
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 510,
+ "endColumn": 106,
+ "endOffset": 612
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 739,
+ "endColumn": 106,
+ "endOffset": 841
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 617,
+ "endColumn": 89,
+ "endOffset": 702
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 846,
+ "endColumn": 89,
+ "endOffset": 931
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 707,
+ "endColumn": 100,
+ "endOffset": 803
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 936,
+ "endColumn": 100,
+ "endOffset": 1032
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 808,
+ "endColumn": 114,
+ "endOffset": 918
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1037,
+ "endColumn": 114,
+ "endOffset": 1147
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 923,
+ "endColumn": 79,
+ "endOffset": 998
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1152,
+ "endColumn": 79,
+ "endOffset": 1227
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1003,
+ "endColumn": 111,
+ "endOffset": 1110
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1232,
+ "endColumn": 111,
+ "endOffset": 1339
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1115,
+ "endColumn": 101,
+ "endOffset": 1212
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1344,
+ "endColumn": 101,
+ "endOffset": 1441
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1217,
+ "endColumn": 95,
+ "endOffset": 1308
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1446,
+ "endColumn": 95,
+ "endOffset": 1537
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1313,
+ "endColumn": 108,
+ "endOffset": 1417
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1542,
+ "endColumn": 108,
+ "endOffset": 1646
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1422,
+ "endColumn": 100,
+ "endOffset": 1518
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1651,
+ "endColumn": 100,
+ "endOffset": 1747
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1523,
+ "endColumn": 114,
+ "endOffset": 1633
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1752,
+ "endColumn": 114,
+ "endOffset": 1862
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1638,
+ "endColumn": 122,
+ "endOffset": 1756
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1867,
+ "endColumn": 122,
+ "endOffset": 1985
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1761,
+ "endColumn": 104,
+ "endOffset": 1861
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1990,
+ "endColumn": 104,
+ "endOffset": 2090
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1866,
+ "endColumn": 100,
+ "endOffset": 1962
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2095,
+ "endColumn": 100,
+ "endOffset": 2191
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ms-rMY.json b/android/app/build/intermediates/blame/res/debug/multi/values-ms-rMY.json
new file mode 100644
index 00000000..7910a68a
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ms-rMY.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 110,
+ "endOffset": 161
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 110,
+ "endOffset": 390
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 166,
+ "endColumn": 107,
+ "endOffset": 269
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 395,
+ "endColumn": 107,
+ "endOffset": 498
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 274,
+ "endColumn": 122,
+ "endOffset": 392
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 503,
+ "endColumn": 122,
+ "endOffset": 621
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 397,
+ "endColumn": 104,
+ "endOffset": 497
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 626,
+ "endColumn": 104,
+ "endOffset": 726
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 502,
+ "endColumn": 107,
+ "endOffset": 605
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 731,
+ "endColumn": 107,
+ "endOffset": 834
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 610,
+ "endColumn": 86,
+ "endOffset": 692
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 839,
+ "endColumn": 86,
+ "endOffset": 921
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 697,
+ "endColumn": 103,
+ "endOffset": 796
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 926,
+ "endColumn": 103,
+ "endOffset": 1025
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 801,
+ "endColumn": 110,
+ "endOffset": 907
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1030,
+ "endColumn": 110,
+ "endOffset": 1136
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 912,
+ "endColumn": 79,
+ "endOffset": 987
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1141,
+ "endColumn": 79,
+ "endOffset": 1216
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 992,
+ "endColumn": 111,
+ "endOffset": 1099
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1221,
+ "endColumn": 111,
+ "endOffset": 1328
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1104,
+ "endColumn": 108,
+ "endOffset": 1208
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1333,
+ "endColumn": 108,
+ "endOffset": 1437
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1213,
+ "endColumn": 96,
+ "endOffset": 1305
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1442,
+ "endColumn": 96,
+ "endOffset": 1534
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1310,
+ "endColumn": 108,
+ "endOffset": 1414
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1539,
+ "endColumn": 108,
+ "endOffset": 1643
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1419,
+ "endColumn": 102,
+ "endOffset": 1517
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1648,
+ "endColumn": 102,
+ "endOffset": 1746
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1522,
+ "endColumn": 106,
+ "endOffset": 1624
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1751,
+ "endColumn": 106,
+ "endOffset": 1853
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1629,
+ "endColumn": 121,
+ "endOffset": 1746
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1858,
+ "endColumn": 121,
+ "endOffset": 1975
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1751,
+ "endColumn": 100,
+ "endOffset": 1847
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1980,
+ "endColumn": 100,
+ "endOffset": 2076
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1852,
+ "endColumn": 100,
+ "endOffset": 1948
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2081,
+ "endColumn": 100,
+ "endOffset": 2177
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-my-rMM.json b/android/app/build/intermediates/blame/res/debug/multi/values-my-rMM.json
new file mode 100644
index 00000000..86fa9d50
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-my-rMM.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 108,
+ "endOffset": 159
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 108,
+ "endOffset": 388
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 164,
+ "endColumn": 107,
+ "endOffset": 267
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 393,
+ "endColumn": 107,
+ "endOffset": 496
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 272,
+ "endColumn": 124,
+ "endOffset": 392
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 501,
+ "endColumn": 124,
+ "endOffset": 621
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 397,
+ "endColumn": 104,
+ "endOffset": 497
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 626,
+ "endColumn": 104,
+ "endOffset": 726
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 502,
+ "endColumn": 116,
+ "endOffset": 614
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 731,
+ "endColumn": 116,
+ "endOffset": 843
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 619,
+ "endColumn": 92,
+ "endOffset": 707
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 848,
+ "endColumn": 92,
+ "endOffset": 936
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 712,
+ "endColumn": 111,
+ "endOffset": 819
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 941,
+ "endColumn": 111,
+ "endOffset": 1048
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 824,
+ "endColumn": 135,
+ "endOffset": 955
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1053,
+ "endColumn": 135,
+ "endOffset": 1184
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 960,
+ "endColumn": 85,
+ "endOffset": 1041
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1189,
+ "endColumn": 85,
+ "endOffset": 1270
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1046,
+ "endColumn": 124,
+ "endOffset": 1166
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1275,
+ "endColumn": 124,
+ "endOffset": 1395
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1171,
+ "endColumn": 111,
+ "endOffset": 1278
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1400,
+ "endColumn": 111,
+ "endOffset": 1507
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1283,
+ "endColumn": 101,
+ "endOffset": 1380
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1512,
+ "endColumn": 101,
+ "endOffset": 1609
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1385,
+ "endColumn": 125,
+ "endOffset": 1506
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1614,
+ "endColumn": 125,
+ "endOffset": 1735
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1511,
+ "endColumn": 110,
+ "endOffset": 1617
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1740,
+ "endColumn": 110,
+ "endOffset": 1846
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1622,
+ "endColumn": 109,
+ "endOffset": 1727
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1851,
+ "endColumn": 109,
+ "endOffset": 1956
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1732,
+ "endColumn": 122,
+ "endOffset": 1850
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1961,
+ "endColumn": 122,
+ "endOffset": 2079
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1855,
+ "endColumn": 99,
+ "endOffset": 1950
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2084,
+ "endColumn": 99,
+ "endOffset": 2179
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1955,
+ "endColumn": 100,
+ "endOffset": 2051
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2184,
+ "endColumn": 100,
+ "endOffset": 2280
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-nb.json b/android/app/build/intermediates/blame/res/debug/multi/values-nb.json
new file mode 100644
index 00000000..6dbebb17
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-nb.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 107,
+ "endOffset": 158
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 107,
+ "endOffset": 383
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 163,
+ "endColumn": 108,
+ "endOffset": 267
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 388,
+ "endColumn": 108,
+ "endOffset": 492
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 272,
+ "endColumn": 124,
+ "endOffset": 392
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 497,
+ "endColumn": 124,
+ "endOffset": 617
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 397,
+ "endColumn": 94,
+ "endOffset": 487
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 622,
+ "endColumn": 94,
+ "endOffset": 712
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 492,
+ "endColumn": 113,
+ "endOffset": 601
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 717,
+ "endColumn": 113,
+ "endOffset": 826
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 606,
+ "endColumn": 85,
+ "endOffset": 687
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 831,
+ "endColumn": 85,
+ "endOffset": 912
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 692,
+ "endColumn": 99,
+ "endOffset": 787
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 917,
+ "endColumn": 99,
+ "endOffset": 1012
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 792,
+ "endColumn": 112,
+ "endOffset": 900
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1017,
+ "endColumn": 112,
+ "endOffset": 1125
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 905,
+ "endColumn": 79,
+ "endOffset": 980
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1130,
+ "endColumn": 79,
+ "endOffset": 1205
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 985,
+ "endColumn": 102,
+ "endOffset": 1083
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1210,
+ "endColumn": 102,
+ "endOffset": 1308
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1088,
+ "endColumn": 98,
+ "endOffset": 1182
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1313,
+ "endColumn": 98,
+ "endOffset": 1407
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1187,
+ "endColumn": 95,
+ "endOffset": 1278
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1412,
+ "endColumn": 95,
+ "endOffset": 1503
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1283,
+ "endColumn": 103,
+ "endOffset": 1382
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1508,
+ "endColumn": 103,
+ "endOffset": 1607
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1387,
+ "endColumn": 97,
+ "endOffset": 1480
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1612,
+ "endColumn": 97,
+ "endOffset": 1705
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1485,
+ "endColumn": 100,
+ "endOffset": 1581
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1710,
+ "endColumn": 100,
+ "endOffset": 1806
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1586,
+ "endColumn": 115,
+ "endOffset": 1697
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1811,
+ "endColumn": 115,
+ "endOffset": 1922
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1702,
+ "endColumn": 96,
+ "endOffset": 1794
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1927,
+ "endColumn": 96,
+ "endOffset": 2019
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1799,
+ "endColumn": 100,
+ "endOffset": 1895
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2024,
+ "endColumn": 100,
+ "endOffset": 2120
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ne-rNP.json b/android/app/build/intermediates/blame/res/debug/multi/values-ne-rNP.json
new file mode 100644
index 00000000..b3cd7cf4
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ne-rNP.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 104,
+ "endOffset": 155
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 104,
+ "endOffset": 384
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 160,
+ "endColumn": 107,
+ "endOffset": 263
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 389,
+ "endColumn": 107,
+ "endOffset": 492
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 268,
+ "endColumn": 122,
+ "endOffset": 386
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 497,
+ "endColumn": 122,
+ "endOffset": 615
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 391,
+ "endColumn": 103,
+ "endOffset": 490
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 620,
+ "endColumn": 103,
+ "endOffset": 719
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 495,
+ "endColumn": 107,
+ "endOffset": 598
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 724,
+ "endColumn": 107,
+ "endOffset": 827
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 603,
+ "endColumn": 90,
+ "endOffset": 689
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 832,
+ "endColumn": 90,
+ "endOffset": 918
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 694,
+ "endColumn": 106,
+ "endOffset": 796
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 923,
+ "endColumn": 106,
+ "endOffset": 1025
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 801,
+ "endColumn": 126,
+ "endOffset": 923
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1030,
+ "endColumn": 126,
+ "endOffset": 1152
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 928,
+ "endColumn": 87,
+ "endOffset": 1011
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1157,
+ "endColumn": 87,
+ "endOffset": 1240
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1016,
+ "endColumn": 109,
+ "endOffset": 1121
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1245,
+ "endColumn": 109,
+ "endOffset": 1350
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1126,
+ "endColumn": 115,
+ "endOffset": 1237
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1355,
+ "endColumn": 115,
+ "endOffset": 1466
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1242,
+ "endColumn": 102,
+ "endOffset": 1340
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1471,
+ "endColumn": 102,
+ "endOffset": 1569
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1345,
+ "endColumn": 114,
+ "endOffset": 1455
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1574,
+ "endColumn": 114,
+ "endOffset": 1684
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1460,
+ "endColumn": 101,
+ "endOffset": 1557
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1689,
+ "endColumn": 101,
+ "endOffset": 1786
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1562,
+ "endColumn": 114,
+ "endOffset": 1672
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1791,
+ "endColumn": 114,
+ "endOffset": 1901
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1677,
+ "endColumn": 130,
+ "endOffset": 1803
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1906,
+ "endColumn": 130,
+ "endOffset": 2032
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1808,
+ "endColumn": 111,
+ "endOffset": 1915
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2037,
+ "endColumn": 111,
+ "endOffset": 2144
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1920,
+ "endColumn": 100,
+ "endOffset": 2016
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2149,
+ "endColumn": 100,
+ "endOffset": 2245
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-nl.json b/android/app/build/intermediates/blame/res/debug/multi/values-nl.json
new file mode 100644
index 00000000..edee2351
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-nl.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 117,
+ "endOffset": 168
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 117,
+ "endOffset": 393
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 173,
+ "endColumn": 107,
+ "endOffset": 276
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 398,
+ "endColumn": 107,
+ "endOffset": 501
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 281,
+ "endColumn": 122,
+ "endOffset": 399
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 506,
+ "endColumn": 122,
+ "endOffset": 624
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 404,
+ "endColumn": 104,
+ "endOffset": 504
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 629,
+ "endColumn": 104,
+ "endOffset": 729
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 509,
+ "endColumn": 106,
+ "endOffset": 611
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 734,
+ "endColumn": 106,
+ "endOffset": 836
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 616,
+ "endColumn": 85,
+ "endOffset": 697
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 841,
+ "endColumn": 85,
+ "endOffset": 922
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 702,
+ "endColumn": 107,
+ "endOffset": 805
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 927,
+ "endColumn": 107,
+ "endOffset": 1030
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 810,
+ "endColumn": 119,
+ "endOffset": 925
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1035,
+ "endColumn": 119,
+ "endOffset": 1150
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 930,
+ "endColumn": 81,
+ "endOffset": 1007
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1155,
+ "endColumn": 81,
+ "endOffset": 1232
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1012,
+ "endColumn": 110,
+ "endOffset": 1118
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1237,
+ "endColumn": 110,
+ "endOffset": 1343
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1123,
+ "endColumn": 103,
+ "endOffset": 1222
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1348,
+ "endColumn": 103,
+ "endOffset": 1447
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1227,
+ "endColumn": 98,
+ "endOffset": 1321
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1452,
+ "endColumn": 98,
+ "endOffset": 1546
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1326,
+ "endColumn": 114,
+ "endOffset": 1436
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1551,
+ "endColumn": 114,
+ "endOffset": 1661
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1441,
+ "endColumn": 112,
+ "endOffset": 1549
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1666,
+ "endColumn": 112,
+ "endOffset": 1774
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1554,
+ "endColumn": 102,
+ "endOffset": 1652
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1779,
+ "endColumn": 102,
+ "endOffset": 1877
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1657,
+ "endColumn": 117,
+ "endOffset": 1770
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1882,
+ "endColumn": 117,
+ "endOffset": 1995
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1775,
+ "endColumn": 102,
+ "endOffset": 1873
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2000,
+ "endColumn": 102,
+ "endOffset": 2098
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1878,
+ "endColumn": 100,
+ "endOffset": 1974
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2103,
+ "endColumn": 100,
+ "endOffset": 2199
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-pa-rIN.json b/android/app/build/intermediates/blame/res/debug/multi/values-pa-rIN.json
new file mode 100644
index 00000000..53e5dca6
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-pa-rIN.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa-rIN/values-pa-rIN.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 105,
+ "endOffset": 156
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 105,
+ "endOffset": 385
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 161,
+ "endColumn": 107,
+ "endOffset": 264
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 390,
+ "endColumn": 107,
+ "endOffset": 493
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 269,
+ "endColumn": 122,
+ "endOffset": 387
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 498,
+ "endColumn": 122,
+ "endOffset": 616
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 392,
+ "endColumn": 104,
+ "endOffset": 492
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 621,
+ "endColumn": 104,
+ "endOffset": 721
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 497,
+ "endColumn": 104,
+ "endOffset": 597
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 726,
+ "endColumn": 104,
+ "endOffset": 826
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 602,
+ "endColumn": 85,
+ "endOffset": 683
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 831,
+ "endColumn": 85,
+ "endOffset": 912
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 688,
+ "endColumn": 99,
+ "endOffset": 783
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 917,
+ "endColumn": 99,
+ "endOffset": 1012
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 788,
+ "endColumn": 112,
+ "endOffset": 896
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1017,
+ "endColumn": 112,
+ "endOffset": 1125
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 901,
+ "endColumn": 78,
+ "endOffset": 975
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1130,
+ "endColumn": 78,
+ "endOffset": 1204
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 980,
+ "endColumn": 100,
+ "endOffset": 1076
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1209,
+ "endColumn": 100,
+ "endOffset": 1305
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1081,
+ "endColumn": 100,
+ "endOffset": 1177
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1310,
+ "endColumn": 100,
+ "endOffset": 1406
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1182,
+ "endColumn": 96,
+ "endOffset": 1274
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1411,
+ "endColumn": 96,
+ "endOffset": 1503
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1279,
+ "endColumn": 108,
+ "endOffset": 1383
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1508,
+ "endColumn": 108,
+ "endOffset": 1612
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1388,
+ "endColumn": 98,
+ "endOffset": 1482
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1617,
+ "endColumn": 98,
+ "endOffset": 1711
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1487,
+ "endColumn": 109,
+ "endOffset": 1592
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1716,
+ "endColumn": 109,
+ "endOffset": 1821
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1597,
+ "endColumn": 121,
+ "endOffset": 1714
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1826,
+ "endColumn": 121,
+ "endOffset": 1943
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1719,
+ "endColumn": 99,
+ "endOffset": 1814
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1948,
+ "endColumn": 99,
+ "endOffset": 2043
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1819,
+ "endColumn": 100,
+ "endOffset": 1915
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2048,
+ "endColumn": 100,
+ "endOffset": 2144
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-pl.json b/android/app/build/intermediates/blame/res/debug/multi/values-pl.json
new file mode 100644
index 00000000..8448d4f5
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-pl.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 115,
+ "endOffset": 166
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 115,
+ "endOffset": 391
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 171,
+ "endColumn": 107,
+ "endOffset": 274
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 396,
+ "endColumn": 107,
+ "endOffset": 499
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 279,
+ "endColumn": 122,
+ "endOffset": 397
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 504,
+ "endColumn": 122,
+ "endOffset": 622
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 402,
+ "endColumn": 101,
+ "endOffset": 499
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 627,
+ "endColumn": 101,
+ "endOffset": 724
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 504,
+ "endColumn": 107,
+ "endOffset": 607
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 729,
+ "endColumn": 107,
+ "endOffset": 832
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 612,
+ "endColumn": 85,
+ "endOffset": 693
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 837,
+ "endColumn": 85,
+ "endOffset": 918
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 698,
+ "endColumn": 108,
+ "endOffset": 802
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 923,
+ "endColumn": 108,
+ "endOffset": 1027
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 807,
+ "endColumn": 118,
+ "endOffset": 921
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1032,
+ "endColumn": 118,
+ "endOffset": 1146
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 926,
+ "endColumn": 81,
+ "endOffset": 1003
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1151,
+ "endColumn": 81,
+ "endOffset": 1228
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1008,
+ "endColumn": 108,
+ "endOffset": 1112
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1233,
+ "endColumn": 108,
+ "endOffset": 1337
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1117,
+ "endColumn": 108,
+ "endOffset": 1221
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1342,
+ "endColumn": 108,
+ "endOffset": 1446
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1226,
+ "endColumn": 98,
+ "endOffset": 1320
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1451,
+ "endColumn": 98,
+ "endOffset": 1545
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1325,
+ "endColumn": 108,
+ "endOffset": 1429
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1550,
+ "endColumn": 108,
+ "endOffset": 1654
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1434,
+ "endColumn": 110,
+ "endOffset": 1540
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1659,
+ "endColumn": 110,
+ "endOffset": 1765
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1545,
+ "endColumn": 107,
+ "endOffset": 1648
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1770,
+ "endColumn": 107,
+ "endOffset": 1873
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1653,
+ "endColumn": 122,
+ "endOffset": 1771
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1878,
+ "endColumn": 122,
+ "endOffset": 1996
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1776,
+ "endColumn": 95,
+ "endOffset": 1867
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2001,
+ "endColumn": 95,
+ "endOffset": 2092
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1872,
+ "endColumn": 100,
+ "endOffset": 1968
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2097,
+ "endColumn": 100,
+ "endOffset": 2193
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-port.json b/android/app/build/intermediates/blame/res/debug/multi/values-port.json
new file mode 100644
index 00000000..a8b6e6d8
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-port.json
@@ -0,0 +1,26 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 55,
+ "endOffset": 106
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-port/values-port.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 55,
+ "endOffset": 331
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-pt-rPT.json b/android/app/build/intermediates/blame/res/debug/multi/values-pt-rPT.json
new file mode 100644
index 00000000..ed35b5c0
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-pt-rPT.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 119,
+ "endOffset": 170
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 119,
+ "endOffset": 399
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 175,
+ "endColumn": 107,
+ "endOffset": 278
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 404,
+ "endColumn": 107,
+ "endOffset": 507
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 283,
+ "endColumn": 122,
+ "endOffset": 401
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 512,
+ "endColumn": 122,
+ "endOffset": 630
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 406,
+ "endColumn": 105,
+ "endOffset": 507
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 635,
+ "endColumn": 105,
+ "endOffset": 736
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 512,
+ "endColumn": 106,
+ "endOffset": 614
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 741,
+ "endColumn": 106,
+ "endOffset": 843
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 619,
+ "endColumn": 88,
+ "endOffset": 703
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 848,
+ "endColumn": 88,
+ "endOffset": 932
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 708,
+ "endColumn": 100,
+ "endOffset": 804
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 937,
+ "endColumn": 100,
+ "endOffset": 1033
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 809,
+ "endColumn": 123,
+ "endOffset": 928
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1038,
+ "endColumn": 123,
+ "endOffset": 1157
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 933,
+ "endColumn": 86,
+ "endOffset": 1015
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1162,
+ "endColumn": 86,
+ "endOffset": 1244
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1020,
+ "endColumn": 106,
+ "endOffset": 1122
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1249,
+ "endColumn": 106,
+ "endOffset": 1351
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1127,
+ "endColumn": 111,
+ "endOffset": 1234
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1356,
+ "endColumn": 111,
+ "endOffset": 1463
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1239,
+ "endColumn": 101,
+ "endOffset": 1336
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1468,
+ "endColumn": 101,
+ "endOffset": 1565
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1341,
+ "endColumn": 107,
+ "endOffset": 1444
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1570,
+ "endColumn": 107,
+ "endOffset": 1673
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1449,
+ "endColumn": 106,
+ "endOffset": 1551
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1678,
+ "endColumn": 106,
+ "endOffset": 1780
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1556,
+ "endColumn": 106,
+ "endOffset": 1658
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1785,
+ "endColumn": 106,
+ "endOffset": 1887
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1663,
+ "endColumn": 121,
+ "endOffset": 1780
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1892,
+ "endColumn": 121,
+ "endOffset": 2009
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1785,
+ "endColumn": 98,
+ "endOffset": 1879
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2014,
+ "endColumn": 98,
+ "endOffset": 2108
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1884,
+ "endColumn": 100,
+ "endOffset": 1980
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2113,
+ "endColumn": 100,
+ "endOffset": 2209
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-pt.json b/android/app/build/intermediates/blame/res/debug/multi/values-pt.json
new file mode 100644
index 00000000..6828f374
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-pt.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 119,
+ "endOffset": 170
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 119,
+ "endOffset": 395
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 175,
+ "endColumn": 107,
+ "endOffset": 278
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 400,
+ "endColumn": 107,
+ "endOffset": 503
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 283,
+ "endColumn": 122,
+ "endOffset": 401
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 508,
+ "endColumn": 122,
+ "endOffset": 626
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 406,
+ "endColumn": 105,
+ "endOffset": 507
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 631,
+ "endColumn": 105,
+ "endOffset": 732
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 512,
+ "endColumn": 106,
+ "endOffset": 614
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 737,
+ "endColumn": 106,
+ "endOffset": 839
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 619,
+ "endColumn": 88,
+ "endOffset": 703
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 844,
+ "endColumn": 88,
+ "endOffset": 928
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 708,
+ "endColumn": 100,
+ "endOffset": 804
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 933,
+ "endColumn": 100,
+ "endOffset": 1029
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 809,
+ "endColumn": 117,
+ "endOffset": 922
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1034,
+ "endColumn": 117,
+ "endOffset": 1147
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 927,
+ "endColumn": 86,
+ "endOffset": 1009
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1152,
+ "endColumn": 86,
+ "endOffset": 1234
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1014,
+ "endColumn": 106,
+ "endOffset": 1116
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1239,
+ "endColumn": 106,
+ "endOffset": 1341
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1121,
+ "endColumn": 111,
+ "endOffset": 1228
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1346,
+ "endColumn": 111,
+ "endOffset": 1453
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1233,
+ "endColumn": 101,
+ "endOffset": 1330
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1458,
+ "endColumn": 101,
+ "endOffset": 1555
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1335,
+ "endColumn": 107,
+ "endOffset": 1438
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1560,
+ "endColumn": 107,
+ "endOffset": 1663
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1443,
+ "endColumn": 106,
+ "endOffset": 1545
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1668,
+ "endColumn": 106,
+ "endOffset": 1770
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1550,
+ "endColumn": 109,
+ "endOffset": 1655
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1775,
+ "endColumn": 109,
+ "endOffset": 1880
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1660,
+ "endColumn": 124,
+ "endOffset": 1780
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1885,
+ "endColumn": 124,
+ "endOffset": 2005
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1785,
+ "endColumn": 99,
+ "endOffset": 1880
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2010,
+ "endColumn": 99,
+ "endOffset": 2105
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1885,
+ "endColumn": 100,
+ "endOffset": 1981
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2110,
+ "endColumn": 100,
+ "endOffset": 2206
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ro.json b/android/app/build/intermediates/blame/res/debug/multi/values-ro.json
new file mode 100644
index 00000000..21eadd53
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ro.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 120,
+ "endOffset": 171
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 120,
+ "endOffset": 396
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 176,
+ "endColumn": 107,
+ "endOffset": 279
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 401,
+ "endColumn": 107,
+ "endOffset": 504
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 122,
+ "endOffset": 402
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 509,
+ "endColumn": 122,
+ "endOffset": 627
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 407,
+ "endColumn": 103,
+ "endOffset": 506
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 632,
+ "endColumn": 103,
+ "endOffset": 731
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 511,
+ "endColumn": 112,
+ "endOffset": 619
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 736,
+ "endColumn": 112,
+ "endOffset": 844
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 624,
+ "endColumn": 87,
+ "endOffset": 707
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 849,
+ "endColumn": 87,
+ "endOffset": 932
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 712,
+ "endColumn": 111,
+ "endOffset": 819
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 937,
+ "endColumn": 111,
+ "endOffset": 1044
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 824,
+ "endColumn": 120,
+ "endOffset": 940
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1049,
+ "endColumn": 120,
+ "endOffset": 1165
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 945,
+ "endColumn": 82,
+ "endOffset": 1023
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1170,
+ "endColumn": 82,
+ "endOffset": 1248
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1028,
+ "endColumn": 111,
+ "endOffset": 1135
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1253,
+ "endColumn": 111,
+ "endOffset": 1360
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1140,
+ "endColumn": 112,
+ "endOffset": 1248
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1365,
+ "endColumn": 112,
+ "endOffset": 1473
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1253,
+ "endColumn": 99,
+ "endOffset": 1348
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1478,
+ "endColumn": 99,
+ "endOffset": 1573
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1353,
+ "endColumn": 113,
+ "endOffset": 1462
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1578,
+ "endColumn": 113,
+ "endOffset": 1687
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1467,
+ "endColumn": 104,
+ "endOffset": 1567
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1692,
+ "endColumn": 104,
+ "endOffset": 1792
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1572,
+ "endColumn": 105,
+ "endOffset": 1673
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1797,
+ "endColumn": 105,
+ "endOffset": 1898
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1678,
+ "endColumn": 120,
+ "endOffset": 1794
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1903,
+ "endColumn": 120,
+ "endOffset": 2019
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1799,
+ "endColumn": 102,
+ "endOffset": 1897
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2024,
+ "endColumn": 102,
+ "endOffset": 2122
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1902,
+ "endColumn": 100,
+ "endOffset": 1998
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2127,
+ "endColumn": 100,
+ "endOffset": 2223
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ru.json b/android/app/build/intermediates/blame/res/debug/multi/values-ru.json
new file mode 100644
index 00000000..a1af1615
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ru.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 114,
+ "endOffset": 165
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 114,
+ "endOffset": 390
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 170,
+ "endColumn": 107,
+ "endOffset": 273
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 395,
+ "endColumn": 107,
+ "endOffset": 498
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 278,
+ "endColumn": 122,
+ "endOffset": 396
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 503,
+ "endColumn": 122,
+ "endOffset": 621
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 401,
+ "endColumn": 101,
+ "endOffset": 498
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 626,
+ "endColumn": 101,
+ "endOffset": 723
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 503,
+ "endColumn": 111,
+ "endOffset": 610
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 728,
+ "endColumn": 111,
+ "endOffset": 835
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 615,
+ "endColumn": 85,
+ "endOffset": 696
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 840,
+ "endColumn": 85,
+ "endOffset": 921
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 701,
+ "endColumn": 104,
+ "endOffset": 801
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 926,
+ "endColumn": 104,
+ "endOffset": 1026
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 806,
+ "endColumn": 119,
+ "endOffset": 921
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1031,
+ "endColumn": 119,
+ "endOffset": 1146
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 926,
+ "endColumn": 79,
+ "endOffset": 1001
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1151,
+ "endColumn": 79,
+ "endOffset": 1226
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1006,
+ "endColumn": 105,
+ "endOffset": 1107
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1231,
+ "endColumn": 105,
+ "endOffset": 1332
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1112,
+ "endColumn": 107,
+ "endOffset": 1215
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1337,
+ "endColumn": 107,
+ "endOffset": 1440
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1220,
+ "endColumn": 97,
+ "endOffset": 1313
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1445,
+ "endColumn": 97,
+ "endOffset": 1538
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1318,
+ "endColumn": 108,
+ "endOffset": 1422
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1543,
+ "endColumn": 108,
+ "endOffset": 1647
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1427,
+ "endColumn": 105,
+ "endOffset": 1528
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1652,
+ "endColumn": 105,
+ "endOffset": 1753
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1533,
+ "endColumn": 107,
+ "endOffset": 1636
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1758,
+ "endColumn": 107,
+ "endOffset": 1861
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1641,
+ "endColumn": 135,
+ "endOffset": 1772
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1866,
+ "endColumn": 135,
+ "endOffset": 1997
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1777,
+ "endColumn": 99,
+ "endOffset": 1872
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2002,
+ "endColumn": 99,
+ "endOffset": 2097
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1877,
+ "endColumn": 100,
+ "endOffset": 1973
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2102,
+ "endColumn": 100,
+ "endOffset": 2198
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-si-rLK.json b/android/app/build/intermediates/blame/res/debug/multi/values-si-rLK.json
new file mode 100644
index 00000000..cd6adbd9
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-si-rLK.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 109,
+ "endOffset": 160
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 109,
+ "endOffset": 389
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 165,
+ "endColumn": 107,
+ "endOffset": 268
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 394,
+ "endColumn": 107,
+ "endOffset": 497
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 273,
+ "endColumn": 122,
+ "endOffset": 391
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 502,
+ "endColumn": 122,
+ "endOffset": 620
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 396,
+ "endColumn": 106,
+ "endOffset": 498
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 625,
+ "endColumn": 106,
+ "endOffset": 727
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 503,
+ "endColumn": 106,
+ "endOffset": 605
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 732,
+ "endColumn": 106,
+ "endOffset": 834
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 610,
+ "endColumn": 87,
+ "endOffset": 693
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 839,
+ "endColumn": 87,
+ "endOffset": 922
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 698,
+ "endColumn": 104,
+ "endOffset": 798
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 927,
+ "endColumn": 104,
+ "endOffset": 1027
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 803,
+ "endColumn": 115,
+ "endOffset": 914
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1032,
+ "endColumn": 115,
+ "endOffset": 1143
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 919,
+ "endColumn": 83,
+ "endOffset": 998
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1148,
+ "endColumn": 83,
+ "endOffset": 1227
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1003,
+ "endColumn": 108,
+ "endOffset": 1107
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1232,
+ "endColumn": 108,
+ "endOffset": 1336
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1112,
+ "endColumn": 104,
+ "endOffset": 1212
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1341,
+ "endColumn": 104,
+ "endOffset": 1441
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1217,
+ "endColumn": 97,
+ "endOffset": 1310
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1446,
+ "endColumn": 97,
+ "endOffset": 1539
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1315,
+ "endColumn": 109,
+ "endOffset": 1420
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1544,
+ "endColumn": 109,
+ "endOffset": 1649
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1425,
+ "endColumn": 98,
+ "endOffset": 1519
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1654,
+ "endColumn": 98,
+ "endOffset": 1748
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1524,
+ "endColumn": 105,
+ "endOffset": 1625
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1753,
+ "endColumn": 105,
+ "endOffset": 1854
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1630,
+ "endColumn": 120,
+ "endOffset": 1746
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1859,
+ "endColumn": 120,
+ "endOffset": 1975
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1751,
+ "endColumn": 98,
+ "endOffset": 1845
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1980,
+ "endColumn": 98,
+ "endOffset": 2074
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1850,
+ "endColumn": 100,
+ "endOffset": 1946
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2079,
+ "endColumn": 100,
+ "endOffset": 2175
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-sk.json b/android/app/build/intermediates/blame/res/debug/multi/values-sk.json
new file mode 100644
index 00000000..937203cc
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-sk.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 106,
+ "endOffset": 157
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 106,
+ "endOffset": 382
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 162,
+ "endColumn": 107,
+ "endOffset": 265
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 387,
+ "endColumn": 107,
+ "endOffset": 490
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 270,
+ "endColumn": 122,
+ "endOffset": 388
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 495,
+ "endColumn": 122,
+ "endOffset": 613
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 393,
+ "endColumn": 99,
+ "endOffset": 488
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 618,
+ "endColumn": 99,
+ "endOffset": 713
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 493,
+ "endColumn": 110,
+ "endOffset": 599
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 718,
+ "endColumn": 110,
+ "endOffset": 824
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 604,
+ "endColumn": 85,
+ "endOffset": 685
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 829,
+ "endColumn": 85,
+ "endOffset": 910
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 690,
+ "endColumn": 107,
+ "endOffset": 793
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 915,
+ "endColumn": 107,
+ "endOffset": 1018
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 798,
+ "endColumn": 117,
+ "endOffset": 911
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1023,
+ "endColumn": 117,
+ "endOffset": 1136
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 916,
+ "endColumn": 83,
+ "endOffset": 995
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1141,
+ "endColumn": 83,
+ "endOffset": 1220
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1000,
+ "endColumn": 104,
+ "endOffset": 1100
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1225,
+ "endColumn": 104,
+ "endOffset": 1325
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1105,
+ "endColumn": 108,
+ "endOffset": 1209
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1330,
+ "endColumn": 108,
+ "endOffset": 1434
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1214,
+ "endColumn": 98,
+ "endOffset": 1308
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1439,
+ "endColumn": 98,
+ "endOffset": 1533
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1313,
+ "endColumn": 105,
+ "endOffset": 1414
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1538,
+ "endColumn": 105,
+ "endOffset": 1639
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1419,
+ "endColumn": 110,
+ "endOffset": 1525
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1644,
+ "endColumn": 110,
+ "endOffset": 1750
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1530,
+ "endColumn": 108,
+ "endOffset": 1634
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1755,
+ "endColumn": 108,
+ "endOffset": 1859
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1639,
+ "endColumn": 123,
+ "endOffset": 1758
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1864,
+ "endColumn": 123,
+ "endOffset": 1983
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1763,
+ "endColumn": 97,
+ "endOffset": 1856
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1988,
+ "endColumn": 97,
+ "endOffset": 2081
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1861,
+ "endColumn": 100,
+ "endOffset": 1957
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2086,
+ "endColumn": 100,
+ "endOffset": 2182
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-sl.json b/android/app/build/intermediates/blame/res/debug/multi/values-sl.json
new file mode 100644
index 00000000..a9bff5a8
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-sl.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 106,
+ "endOffset": 157
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 106,
+ "endOffset": 382
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 162,
+ "endColumn": 107,
+ "endOffset": 265
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 387,
+ "endColumn": 107,
+ "endOffset": 490
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 270,
+ "endColumn": 122,
+ "endOffset": 388
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 495,
+ "endColumn": 122,
+ "endOffset": 613
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 393,
+ "endColumn": 106,
+ "endOffset": 495
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 618,
+ "endColumn": 106,
+ "endOffset": 720
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 500,
+ "endColumn": 107,
+ "endOffset": 603
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 725,
+ "endColumn": 107,
+ "endOffset": 828
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 608,
+ "endColumn": 86,
+ "endOffset": 690
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 833,
+ "endColumn": 86,
+ "endOffset": 915
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 695,
+ "endColumn": 102,
+ "endOffset": 793
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 920,
+ "endColumn": 102,
+ "endOffset": 1018
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 798,
+ "endColumn": 118,
+ "endOffset": 912
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1023,
+ "endColumn": 118,
+ "endOffset": 1137
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 917,
+ "endColumn": 83,
+ "endOffset": 996
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1142,
+ "endColumn": 83,
+ "endOffset": 1221
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1001,
+ "endColumn": 107,
+ "endOffset": 1104
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1226,
+ "endColumn": 107,
+ "endOffset": 1329
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1109,
+ "endColumn": 108,
+ "endOffset": 1213
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1334,
+ "endColumn": 108,
+ "endOffset": 1438
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1218,
+ "endColumn": 99,
+ "endOffset": 1313
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1443,
+ "endColumn": 99,
+ "endOffset": 1538
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1318,
+ "endColumn": 112,
+ "endOffset": 1426
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1543,
+ "endColumn": 112,
+ "endOffset": 1651
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1431,
+ "endColumn": 106,
+ "endOffset": 1533
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1656,
+ "endColumn": 106,
+ "endOffset": 1758
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1538,
+ "endColumn": 103,
+ "endOffset": 1637
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1763,
+ "endColumn": 103,
+ "endOffset": 1862
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1642,
+ "endColumn": 116,
+ "endOffset": 1754
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1867,
+ "endColumn": 116,
+ "endOffset": 1979
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1759,
+ "endColumn": 96,
+ "endOffset": 1851
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1984,
+ "endColumn": 96,
+ "endOffset": 2076
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1856,
+ "endColumn": 100,
+ "endOffset": 1952
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2081,
+ "endColumn": 100,
+ "endOffset": 2177
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-sq-rAL.json b/android/app/build/intermediates/blame/res/debug/multi/values-sq-rAL.json
new file mode 100644
index 00000000..0a5caace
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-sq-rAL.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq-rAL/values-sq-rAL.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 113,
+ "endOffset": 164
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 113,
+ "endOffset": 393
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 169,
+ "endColumn": 107,
+ "endOffset": 272
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 398,
+ "endColumn": 107,
+ "endOffset": 501
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 277,
+ "endColumn": 122,
+ "endOffset": 395
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 506,
+ "endColumn": 122,
+ "endOffset": 624
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 400,
+ "endColumn": 99,
+ "endOffset": 495
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 629,
+ "endColumn": 99,
+ "endOffset": 724
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 500,
+ "endColumn": 111,
+ "endOffset": 607
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 729,
+ "endColumn": 111,
+ "endOffset": 836
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 612,
+ "endColumn": 86,
+ "endOffset": 694
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 841,
+ "endColumn": 86,
+ "endOffset": 923
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 699,
+ "endColumn": 109,
+ "endOffset": 804
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 928,
+ "endColumn": 109,
+ "endOffset": 1033
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 809,
+ "endColumn": 122,
+ "endOffset": 927
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1038,
+ "endColumn": 122,
+ "endOffset": 1156
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 932,
+ "endColumn": 82,
+ "endOffset": 1010
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1161,
+ "endColumn": 82,
+ "endOffset": 1239
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1015,
+ "endColumn": 105,
+ "endOffset": 1116
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1244,
+ "endColumn": 105,
+ "endOffset": 1345
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1121,
+ "endColumn": 104,
+ "endOffset": 1221
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1350,
+ "endColumn": 104,
+ "endOffset": 1450
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1226,
+ "endColumn": 97,
+ "endOffset": 1319
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1455,
+ "endColumn": 97,
+ "endOffset": 1548
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1324,
+ "endColumn": 105,
+ "endOffset": 1425
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1553,
+ "endColumn": 105,
+ "endOffset": 1654
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1430,
+ "endColumn": 102,
+ "endOffset": 1528
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1659,
+ "endColumn": 102,
+ "endOffset": 1757
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1533,
+ "endColumn": 115,
+ "endOffset": 1644
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1762,
+ "endColumn": 115,
+ "endOffset": 1873
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1649,
+ "endColumn": 130,
+ "endOffset": 1775
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1878,
+ "endColumn": 130,
+ "endOffset": 2004
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1780,
+ "endColumn": 98,
+ "endOffset": 1874
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2009,
+ "endColumn": 98,
+ "endOffset": 2103
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1879,
+ "endColumn": 100,
+ "endOffset": 1975
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2108,
+ "endColumn": 100,
+ "endOffset": 2204
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-sr.json b/android/app/build/intermediates/blame/res/debug/multi/values-sr.json
new file mode 100644
index 00000000..36ccec91
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-sr.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 108,
+ "endOffset": 159
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 108,
+ "endOffset": 384
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 164,
+ "endColumn": 107,
+ "endOffset": 267
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 389,
+ "endColumn": 107,
+ "endOffset": 492
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 272,
+ "endColumn": 122,
+ "endOffset": 390
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 497,
+ "endColumn": 122,
+ "endOffset": 615
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 395,
+ "endColumn": 102,
+ "endOffset": 493
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 620,
+ "endColumn": 102,
+ "endOffset": 718
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 498,
+ "endColumn": 105,
+ "endOffset": 599
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 723,
+ "endColumn": 105,
+ "endOffset": 824
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 604,
+ "endColumn": 85,
+ "endOffset": 685
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 829,
+ "endColumn": 85,
+ "endOffset": 910
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 690,
+ "endColumn": 103,
+ "endOffset": 789
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 915,
+ "endColumn": 103,
+ "endOffset": 1014
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 794,
+ "endColumn": 117,
+ "endOffset": 907
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1019,
+ "endColumn": 117,
+ "endOffset": 1132
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 912,
+ "endColumn": 87,
+ "endOffset": 995
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1137,
+ "endColumn": 87,
+ "endOffset": 1220
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1000,
+ "endColumn": 104,
+ "endOffset": 1100
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1225,
+ "endColumn": 104,
+ "endOffset": 1325
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1105,
+ "endColumn": 107,
+ "endOffset": 1208
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1330,
+ "endColumn": 107,
+ "endOffset": 1433
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1213,
+ "endColumn": 100,
+ "endOffset": 1309
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1438,
+ "endColumn": 100,
+ "endOffset": 1534
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1314,
+ "endColumn": 103,
+ "endOffset": 1413
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1539,
+ "endColumn": 103,
+ "endOffset": 1638
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1418,
+ "endColumn": 107,
+ "endOffset": 1521
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1643,
+ "endColumn": 107,
+ "endOffset": 1746
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1526,
+ "endColumn": 100,
+ "endOffset": 1622
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1751,
+ "endColumn": 100,
+ "endOffset": 1847
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1627,
+ "endColumn": 127,
+ "endOffset": 1750
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1852,
+ "endColumn": 127,
+ "endOffset": 1975
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1755,
+ "endColumn": 96,
+ "endOffset": 1847
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1980,
+ "endColumn": 96,
+ "endOffset": 2072
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1852,
+ "endColumn": 100,
+ "endOffset": 1948
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2077,
+ "endColumn": 100,
+ "endOffset": 2173
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-sv.json b/android/app/build/intermediates/blame/res/debug/multi/values-sv.json
new file mode 100644
index 00000000..ddb8fdfe
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-sv.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 105,
+ "endOffset": 156
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 105,
+ "endOffset": 381
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 161,
+ "endColumn": 107,
+ "endOffset": 264
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 386,
+ "endColumn": 107,
+ "endOffset": 489
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 269,
+ "endColumn": 122,
+ "endOffset": 387
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 494,
+ "endColumn": 122,
+ "endOffset": 612
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 392,
+ "endColumn": 102,
+ "endOffset": 490
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 617,
+ "endColumn": 102,
+ "endOffset": 715
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 495,
+ "endColumn": 110,
+ "endOffset": 601
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 720,
+ "endColumn": 110,
+ "endOffset": 826
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 606,
+ "endColumn": 84,
+ "endOffset": 686
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 831,
+ "endColumn": 84,
+ "endOffset": 911
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 691,
+ "endColumn": 101,
+ "endOffset": 788
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 916,
+ "endColumn": 101,
+ "endOffset": 1013
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 793,
+ "endColumn": 112,
+ "endOffset": 901
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1018,
+ "endColumn": 112,
+ "endOffset": 1126
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 906,
+ "endColumn": 79,
+ "endOffset": 981
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1131,
+ "endColumn": 79,
+ "endOffset": 1206
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 986,
+ "endColumn": 105,
+ "endOffset": 1087
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1211,
+ "endColumn": 105,
+ "endOffset": 1312
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1092,
+ "endColumn": 99,
+ "endOffset": 1187
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1317,
+ "endColumn": 99,
+ "endOffset": 1412
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1192,
+ "endColumn": 95,
+ "endOffset": 1283
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1417,
+ "endColumn": 95,
+ "endOffset": 1508
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1288,
+ "endColumn": 104,
+ "endOffset": 1388
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1513,
+ "endColumn": 104,
+ "endOffset": 1613
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1393,
+ "endColumn": 101,
+ "endOffset": 1490
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1618,
+ "endColumn": 101,
+ "endOffset": 1715
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1495,
+ "endColumn": 101,
+ "endOffset": 1592
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1720,
+ "endColumn": 101,
+ "endOffset": 1817
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1597,
+ "endColumn": 116,
+ "endOffset": 1709
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1822,
+ "endColumn": 116,
+ "endOffset": 1934
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1714,
+ "endColumn": 101,
+ "endOffset": 1811
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1939,
+ "endColumn": 101,
+ "endOffset": 2036
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1816,
+ "endColumn": 100,
+ "endOffset": 1912
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2041,
+ "endColumn": 100,
+ "endOffset": 2137
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-sw.json b/android/app/build/intermediates/blame/res/debug/multi/values-sw.json
new file mode 100644
index 00000000..8789e9d5
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-sw.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 102,
+ "endOffset": 153
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 102,
+ "endOffset": 378
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 158,
+ "endColumn": 107,
+ "endOffset": 261
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 383,
+ "endColumn": 107,
+ "endOffset": 486
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 266,
+ "endColumn": 122,
+ "endOffset": 384
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 491,
+ "endColumn": 122,
+ "endOffset": 609
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 389,
+ "endColumn": 97,
+ "endOffset": 482
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 614,
+ "endColumn": 97,
+ "endOffset": 707
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 487,
+ "endColumn": 107,
+ "endOffset": 590
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 712,
+ "endColumn": 107,
+ "endOffset": 815
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 595,
+ "endColumn": 89,
+ "endOffset": 680
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 820,
+ "endColumn": 89,
+ "endOffset": 905
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 685,
+ "endColumn": 104,
+ "endOffset": 785
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 910,
+ "endColumn": 104,
+ "endOffset": 1010
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 790,
+ "endColumn": 116,
+ "endOffset": 902
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1015,
+ "endColumn": 116,
+ "endOffset": 1127
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 907,
+ "endColumn": 81,
+ "endOffset": 984
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1132,
+ "endColumn": 81,
+ "endOffset": 1209
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 989,
+ "endColumn": 100,
+ "endOffset": 1085
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1214,
+ "endColumn": 100,
+ "endOffset": 1310
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1090,
+ "endColumn": 108,
+ "endOffset": 1194
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1315,
+ "endColumn": 108,
+ "endOffset": 1419
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1199,
+ "endColumn": 98,
+ "endOffset": 1293
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1424,
+ "endColumn": 98,
+ "endOffset": 1518
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1298,
+ "endColumn": 106,
+ "endOffset": 1400
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1523,
+ "endColumn": 106,
+ "endOffset": 1625
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1405,
+ "endColumn": 108,
+ "endOffset": 1509
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1630,
+ "endColumn": 108,
+ "endOffset": 1734
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1514,
+ "endColumn": 104,
+ "endOffset": 1614
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1739,
+ "endColumn": 104,
+ "endOffset": 1839
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1619,
+ "endColumn": 118,
+ "endOffset": 1733
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1844,
+ "endColumn": 118,
+ "endOffset": 1958
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1738,
+ "endColumn": 96,
+ "endOffset": 1830
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1963,
+ "endColumn": 96,
+ "endOffset": 2055
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1835,
+ "endColumn": 100,
+ "endOffset": 1931
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2060,
+ "endColumn": 100,
+ "endOffset": 2156
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json b/android/app/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json
new file mode 100644
index 00000000..ec263d2d
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json
@@ -0,0 +1,159 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 68,
+ "endOffset": 119
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 68,
+ "endOffset": 348
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 124,
+ "endColumn": 69,
+ "endOffset": 189
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 353,
+ "endColumn": 69,
+ "endOffset": 418
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 194,
+ "endColumn": 73,
+ "endOffset": 263
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 423,
+ "endColumn": 73,
+ "endOffset": 492
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 268,
+ "endColumn": 75,
+ "endOffset": 339
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 497,
+ "endColumn": 75,
+ "endOffset": 568
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 344,
+ "endColumn": 58,
+ "endOffset": 398
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 802,
+ "endColumn": 58,
+ "endOffset": 856
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 403,
+ "endColumn": 70,
+ "endOffset": 469
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1090,
+ "endColumn": 70,
+ "endOffset": 1156
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 474,
+ "endColumn": 67,
+ "endOffset": 537
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1161,
+ "endColumn": 67,
+ "endOffset": 1224
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 542,
+ "endColumn": 54,
+ "endOffset": 592
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1229,
+ "endColumn": 54,
+ "endOffset": 1279
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ta-rIN.json b/android/app/build/intermediates/blame/res/debug/multi/values-ta-rIN.json
new file mode 100644
index 00000000..807fd698
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ta-rIN.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 113,
+ "endOffset": 164
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 113,
+ "endOffset": 393
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 169,
+ "endColumn": 107,
+ "endOffset": 272
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 398,
+ "endColumn": 107,
+ "endOffset": 501
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 277,
+ "endColumn": 122,
+ "endOffset": 395
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 506,
+ "endColumn": 122,
+ "endOffset": 624
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 400,
+ "endColumn": 104,
+ "endOffset": 500
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 629,
+ "endColumn": 104,
+ "endOffset": 729
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 505,
+ "endColumn": 114,
+ "endOffset": 615
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 734,
+ "endColumn": 114,
+ "endOffset": 844
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 620,
+ "endColumn": 88,
+ "endOffset": 704
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 849,
+ "endColumn": 88,
+ "endOffset": 933
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 709,
+ "endColumn": 106,
+ "endOffset": 811
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 938,
+ "endColumn": 106,
+ "endOffset": 1040
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 816,
+ "endColumn": 125,
+ "endOffset": 937
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1045,
+ "endColumn": 125,
+ "endOffset": 1166
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 942,
+ "endColumn": 81,
+ "endOffset": 1019
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1171,
+ "endColumn": 81,
+ "endOffset": 1248
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1024,
+ "endColumn": 101,
+ "endOffset": 1121
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1253,
+ "endColumn": 101,
+ "endOffset": 1350
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1126,
+ "endColumn": 103,
+ "endOffset": 1225
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1355,
+ "endColumn": 103,
+ "endOffset": 1454
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1230,
+ "endColumn": 96,
+ "endOffset": 1322
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1459,
+ "endColumn": 96,
+ "endOffset": 1551
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1327,
+ "endColumn": 109,
+ "endOffset": 1432
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1556,
+ "endColumn": 109,
+ "endOffset": 1661
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1437,
+ "endColumn": 101,
+ "endOffset": 1534
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1666,
+ "endColumn": 101,
+ "endOffset": 1763
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1539,
+ "endColumn": 106,
+ "endOffset": 1641
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1768,
+ "endColumn": 106,
+ "endOffset": 1870
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1646,
+ "endColumn": 118,
+ "endOffset": 1760
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1875,
+ "endColumn": 118,
+ "endOffset": 1989
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1765,
+ "endColumn": 99,
+ "endOffset": 1860
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1994,
+ "endColumn": 99,
+ "endOffset": 2089
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1865,
+ "endColumn": 100,
+ "endOffset": 1961
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2094,
+ "endColumn": 100,
+ "endOffset": 2190
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-te-rIN.json b/android/app/build/intermediates/blame/res/debug/multi/values-te-rIN.json
new file mode 100644
index 00000000..345cdaa6
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-te-rIN.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 113,
+ "endOffset": 164
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 113,
+ "endOffset": 393
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 169,
+ "endColumn": 107,
+ "endOffset": 272
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 398,
+ "endColumn": 107,
+ "endOffset": 501
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 277,
+ "endColumn": 122,
+ "endOffset": 395
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 506,
+ "endColumn": 122,
+ "endOffset": 624
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 400,
+ "endColumn": 108,
+ "endOffset": 504
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 629,
+ "endColumn": 108,
+ "endOffset": 733
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 509,
+ "endColumn": 110,
+ "endOffset": 615
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 738,
+ "endColumn": 110,
+ "endOffset": 844
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 620,
+ "endColumn": 89,
+ "endOffset": 705
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 849,
+ "endColumn": 89,
+ "endOffset": 934
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 710,
+ "endColumn": 104,
+ "endOffset": 810
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 939,
+ "endColumn": 104,
+ "endOffset": 1039
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 815,
+ "endColumn": 124,
+ "endOffset": 935
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1044,
+ "endColumn": 124,
+ "endOffset": 1164
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 940,
+ "endColumn": 84,
+ "endOffset": 1020
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1169,
+ "endColumn": 84,
+ "endOffset": 1249
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1025,
+ "endColumn": 112,
+ "endOffset": 1133
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1254,
+ "endColumn": 112,
+ "endOffset": 1362
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1138,
+ "endColumn": 107,
+ "endOffset": 1241
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1367,
+ "endColumn": 107,
+ "endOffset": 1470
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1246,
+ "endColumn": 99,
+ "endOffset": 1341
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1475,
+ "endColumn": 99,
+ "endOffset": 1570
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1346,
+ "endColumn": 110,
+ "endOffset": 1452
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1575,
+ "endColumn": 110,
+ "endOffset": 1681
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1457,
+ "endColumn": 101,
+ "endOffset": 1554
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1686,
+ "endColumn": 101,
+ "endOffset": 1783
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1559,
+ "endColumn": 116,
+ "endOffset": 1671
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1788,
+ "endColumn": 116,
+ "endOffset": 1900
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1676,
+ "endColumn": 126,
+ "endOffset": 1798
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1905,
+ "endColumn": 126,
+ "endOffset": 2027
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1803,
+ "endColumn": 100,
+ "endOffset": 1899
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2032,
+ "endColumn": 100,
+ "endOffset": 2128
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1904,
+ "endColumn": 100,
+ "endOffset": 2000
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2133,
+ "endColumn": 100,
+ "endOffset": 2229
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-th.json b/android/app/build/intermediates/blame/res/debug/multi/values-th.json
new file mode 100644
index 00000000..49ff15f9
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-th.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 104,
+ "endOffset": 155
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 104,
+ "endOffset": 380
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 160,
+ "endColumn": 107,
+ "endOffset": 263
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 385,
+ "endColumn": 107,
+ "endOffset": 488
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 268,
+ "endColumn": 122,
+ "endOffset": 386
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 493,
+ "endColumn": 122,
+ "endOffset": 611
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 391,
+ "endColumn": 97,
+ "endOffset": 484
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 616,
+ "endColumn": 97,
+ "endOffset": 709
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 489,
+ "endColumn": 107,
+ "endOffset": 592
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 714,
+ "endColumn": 107,
+ "endOffset": 817
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 597,
+ "endColumn": 88,
+ "endOffset": 681
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 822,
+ "endColumn": 88,
+ "endOffset": 906
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 686,
+ "endColumn": 101,
+ "endOffset": 783
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 911,
+ "endColumn": 101,
+ "endOffset": 1008
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 788,
+ "endColumn": 109,
+ "endOffset": 893
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1013,
+ "endColumn": 109,
+ "endOffset": 1118
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 898,
+ "endColumn": 80,
+ "endOffset": 974
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1123,
+ "endColumn": 80,
+ "endOffset": 1199
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 979,
+ "endColumn": 107,
+ "endOffset": 1082
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1204,
+ "endColumn": 107,
+ "endOffset": 1307
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1087,
+ "endColumn": 103,
+ "endOffset": 1186
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1312,
+ "endColumn": 103,
+ "endOffset": 1411
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1191,
+ "endColumn": 97,
+ "endOffset": 1284
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1416,
+ "endColumn": 97,
+ "endOffset": 1509
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1289,
+ "endColumn": 107,
+ "endOffset": 1392
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1514,
+ "endColumn": 107,
+ "endOffset": 1617
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1397,
+ "endColumn": 104,
+ "endOffset": 1497
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1622,
+ "endColumn": 104,
+ "endOffset": 1722
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1502,
+ "endColumn": 100,
+ "endOffset": 1598
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1727,
+ "endColumn": 100,
+ "endOffset": 1823
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1603,
+ "endColumn": 115,
+ "endOffset": 1714
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1828,
+ "endColumn": 115,
+ "endOffset": 1939
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1719,
+ "endColumn": 94,
+ "endOffset": 1809
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1944,
+ "endColumn": 94,
+ "endOffset": 2034
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1814,
+ "endColumn": 100,
+ "endOffset": 1910
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2039,
+ "endColumn": 100,
+ "endOffset": 2135
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-tl.json b/android/app/build/intermediates/blame/res/debug/multi/values-tl.json
new file mode 100644
index 00000000..3abc813e
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-tl.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 118,
+ "endOffset": 169
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 118,
+ "endOffset": 394
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 174,
+ "endColumn": 107,
+ "endOffset": 277
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 399,
+ "endColumn": 107,
+ "endOffset": 502
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 282,
+ "endColumn": 122,
+ "endOffset": 400
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 507,
+ "endColumn": 122,
+ "endOffset": 625
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 405,
+ "endColumn": 107,
+ "endOffset": 508
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 630,
+ "endColumn": 107,
+ "endOffset": 733
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 513,
+ "endColumn": 116,
+ "endOffset": 625
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 738,
+ "endColumn": 116,
+ "endOffset": 850
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 630,
+ "endColumn": 87,
+ "endOffset": 713
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 855,
+ "endColumn": 87,
+ "endOffset": 938
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 718,
+ "endColumn": 105,
+ "endOffset": 819
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 943,
+ "endColumn": 105,
+ "endOffset": 1044
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 824,
+ "endColumn": 120,
+ "endOffset": 940
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1049,
+ "endColumn": 120,
+ "endOffset": 1165
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 945,
+ "endColumn": 83,
+ "endOffset": 1024
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1170,
+ "endColumn": 83,
+ "endOffset": 1249
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1029,
+ "endColumn": 108,
+ "endOffset": 1133
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1254,
+ "endColumn": 108,
+ "endOffset": 1358
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1138,
+ "endColumn": 110,
+ "endOffset": 1244
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1363,
+ "endColumn": 110,
+ "endOffset": 1469
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1249,
+ "endColumn": 100,
+ "endOffset": 1345
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1474,
+ "endColumn": 100,
+ "endOffset": 1570
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1350,
+ "endColumn": 109,
+ "endOffset": 1455
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1575,
+ "endColumn": 109,
+ "endOffset": 1680
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1460,
+ "endColumn": 116,
+ "endOffset": 1572
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1685,
+ "endColumn": 116,
+ "endOffset": 1797
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1577,
+ "endColumn": 107,
+ "endOffset": 1680
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1802,
+ "endColumn": 107,
+ "endOffset": 1905
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1685,
+ "endColumn": 122,
+ "endOffset": 1803
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1910,
+ "endColumn": 122,
+ "endOffset": 2028
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1808,
+ "endColumn": 101,
+ "endOffset": 1905
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2033,
+ "endColumn": 101,
+ "endOffset": 2130
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1910,
+ "endColumn": 100,
+ "endOffset": 2006
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2135,
+ "endColumn": 100,
+ "endOffset": 2231
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-tr.json b/android/app/build/intermediates/blame/res/debug/multi/values-tr.json
new file mode 100644
index 00000000..c8dfc716
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-tr.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 104,
+ "endOffset": 155
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 104,
+ "endOffset": 380
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 160,
+ "endColumn": 107,
+ "endOffset": 263
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 385,
+ "endColumn": 107,
+ "endOffset": 488
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 268,
+ "endColumn": 122,
+ "endOffset": 386
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 493,
+ "endColumn": 122,
+ "endOffset": 611
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 391,
+ "endColumn": 98,
+ "endOffset": 485
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 616,
+ "endColumn": 98,
+ "endOffset": 710
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 490,
+ "endColumn": 111,
+ "endOffset": 597
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 715,
+ "endColumn": 111,
+ "endOffset": 822
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 602,
+ "endColumn": 89,
+ "endOffset": 687
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 827,
+ "endColumn": 89,
+ "endOffset": 912
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 692,
+ "endColumn": 105,
+ "endOffset": 793
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 917,
+ "endColumn": 105,
+ "endOffset": 1018
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 798,
+ "endColumn": 119,
+ "endOffset": 913
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1023,
+ "endColumn": 119,
+ "endOffset": 1138
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 918,
+ "endColumn": 78,
+ "endOffset": 992
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1143,
+ "endColumn": 78,
+ "endOffset": 1217
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 997,
+ "endColumn": 106,
+ "endOffset": 1099
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1222,
+ "endColumn": 106,
+ "endOffset": 1324
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1104,
+ "endColumn": 104,
+ "endOffset": 1204
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1329,
+ "endColumn": 104,
+ "endOffset": 1429
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1209,
+ "endColumn": 95,
+ "endOffset": 1300
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1434,
+ "endColumn": 95,
+ "endOffset": 1525
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1305,
+ "endColumn": 106,
+ "endOffset": 1407
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1530,
+ "endColumn": 106,
+ "endOffset": 1632
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1412,
+ "endColumn": 101,
+ "endOffset": 1509
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1637,
+ "endColumn": 101,
+ "endOffset": 1734
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1514,
+ "endColumn": 107,
+ "endOffset": 1617
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1739,
+ "endColumn": 107,
+ "endOffset": 1842
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1622,
+ "endColumn": 118,
+ "endOffset": 1736
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1847,
+ "endColumn": 118,
+ "endOffset": 1961
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1741,
+ "endColumn": 97,
+ "endOffset": 1834
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1966,
+ "endColumn": 97,
+ "endOffset": 2059
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1839,
+ "endColumn": 100,
+ "endOffset": 1935
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2064,
+ "endColumn": 100,
+ "endOffset": 2160
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-uk.json b/android/app/build/intermediates/blame/res/debug/multi/values-uk.json
new file mode 100644
index 00000000..7b852dda
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-uk.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 109,
+ "endOffset": 160
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 109,
+ "endOffset": 385
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 165,
+ "endColumn": 107,
+ "endOffset": 268
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 390,
+ "endColumn": 107,
+ "endOffset": 493
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 273,
+ "endColumn": 122,
+ "endOffset": 391
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 498,
+ "endColumn": 122,
+ "endOffset": 616
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 396,
+ "endColumn": 101,
+ "endOffset": 493
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 621,
+ "endColumn": 101,
+ "endOffset": 718
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 498,
+ "endColumn": 105,
+ "endOffset": 599
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 723,
+ "endColumn": 105,
+ "endOffset": 824
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 604,
+ "endColumn": 85,
+ "endOffset": 685
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 829,
+ "endColumn": 85,
+ "endOffset": 910
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 690,
+ "endColumn": 107,
+ "endOffset": 793
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 915,
+ "endColumn": 107,
+ "endOffset": 1018
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 798,
+ "endColumn": 117,
+ "endOffset": 911
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1023,
+ "endColumn": 117,
+ "endOffset": 1136
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 916,
+ "endColumn": 80,
+ "endOffset": 992
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1141,
+ "endColumn": 80,
+ "endOffset": 1217
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 997,
+ "endColumn": 105,
+ "endOffset": 1098
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1222,
+ "endColumn": 105,
+ "endOffset": 1323
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1103,
+ "endColumn": 106,
+ "endOffset": 1205
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1328,
+ "endColumn": 106,
+ "endOffset": 1430
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1210,
+ "endColumn": 97,
+ "endOffset": 1303
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1435,
+ "endColumn": 97,
+ "endOffset": 1528
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1308,
+ "endColumn": 107,
+ "endOffset": 1411
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1533,
+ "endColumn": 107,
+ "endOffset": 1636
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1416,
+ "endColumn": 105,
+ "endOffset": 1517
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1641,
+ "endColumn": 105,
+ "endOffset": 1742
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1522,
+ "endColumn": 108,
+ "endOffset": 1626
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1747,
+ "endColumn": 108,
+ "endOffset": 1851
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1631,
+ "endColumn": 123,
+ "endOffset": 1750
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1856,
+ "endColumn": 123,
+ "endOffset": 1975
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1755,
+ "endColumn": 99,
+ "endOffset": 1850
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1980,
+ "endColumn": 99,
+ "endOffset": 2075
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1855,
+ "endColumn": 100,
+ "endOffset": 1951
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2080,
+ "endColumn": 100,
+ "endOffset": 2176
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-ur-rPK.json b/android/app/build/intermediates/blame/res/debug/multi/values-ur-rPK.json
new file mode 100644
index 00000000..e90b8989
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-ur-rPK.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 109,
+ "endOffset": 160
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 109,
+ "endOffset": 389
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 165,
+ "endColumn": 107,
+ "endOffset": 268
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 394,
+ "endColumn": 107,
+ "endOffset": 497
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 273,
+ "endColumn": 122,
+ "endOffset": 391
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 502,
+ "endColumn": 122,
+ "endOffset": 620
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 396,
+ "endColumn": 105,
+ "endOffset": 497
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 625,
+ "endColumn": 105,
+ "endOffset": 726
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 502,
+ "endColumn": 108,
+ "endOffset": 606
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 731,
+ "endColumn": 108,
+ "endOffset": 835
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 611,
+ "endColumn": 85,
+ "endOffset": 692
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 840,
+ "endColumn": 85,
+ "endOffset": 921
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 697,
+ "endColumn": 103,
+ "endOffset": 796
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 926,
+ "endColumn": 103,
+ "endOffset": 1025
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 801,
+ "endColumn": 119,
+ "endOffset": 916
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1030,
+ "endColumn": 119,
+ "endOffset": 1145
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 921,
+ "endColumn": 84,
+ "endOffset": 1001
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1150,
+ "endColumn": 84,
+ "endOffset": 1230
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1006,
+ "endColumn": 107,
+ "endOffset": 1109
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1235,
+ "endColumn": 107,
+ "endOffset": 1338
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1114,
+ "endColumn": 108,
+ "endOffset": 1218
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1343,
+ "endColumn": 108,
+ "endOffset": 1447
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1223,
+ "endColumn": 101,
+ "endOffset": 1320
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1452,
+ "endColumn": 101,
+ "endOffset": 1549
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1325,
+ "endColumn": 110,
+ "endOffset": 1431
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1554,
+ "endColumn": 110,
+ "endOffset": 1660
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1436,
+ "endColumn": 99,
+ "endOffset": 1531
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1665,
+ "endColumn": 99,
+ "endOffset": 1760
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1536,
+ "endColumn": 107,
+ "endOffset": 1639
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1765,
+ "endColumn": 107,
+ "endOffset": 1868
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1644,
+ "endColumn": 128,
+ "endOffset": 1768
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1873,
+ "endColumn": 128,
+ "endOffset": 1997
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1773,
+ "endColumn": 97,
+ "endOffset": 1866
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2002,
+ "endColumn": 97,
+ "endOffset": 2095
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1871,
+ "endColumn": 102,
+ "endOffset": 1969
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2100,
+ "endColumn": 102,
+ "endOffset": 2198
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json b/android/app/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json
new file mode 100644
index 00000000..4508c0ca
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json
@@ -0,0 +1,330 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 104,
+ "endOffset": 155
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 104,
+ "endOffset": 384
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 160,
+ "endColumn": 107,
+ "endOffset": 263
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 389,
+ "endColumn": 107,
+ "endOffset": 492
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 268,
+ "endColumn": 122,
+ "endOffset": 386
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 497,
+ "endColumn": 122,
+ "endOffset": 615
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 391,
+ "endColumn": 103,
+ "endOffset": 490
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 620,
+ "endColumn": 103,
+ "endOffset": 719
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 495,
+ "endColumn": 116,
+ "endOffset": 607
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 724,
+ "endColumn": 116,
+ "endOffset": 836
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 612,
+ "endColumn": 85,
+ "endOffset": 693
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 841,
+ "endColumn": 85,
+ "endOffset": 922
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 698,
+ "endColumn": 110,
+ "endOffset": 804
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 927,
+ "endColumn": 110,
+ "endOffset": 1033
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 809,
+ "endColumn": 115,
+ "endOffset": 920
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1038,
+ "endColumn": 115,
+ "endOffset": 1149
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 925,
+ "endColumn": 83,
+ "endOffset": 1004
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1154,
+ "endColumn": 83,
+ "endOffset": 1233
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1009,
+ "endColumn": 108,
+ "endOffset": 1113
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1238,
+ "endColumn": 108,
+ "endOffset": 1342
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1118,
+ "endColumn": 106,
+ "endOffset": 1220
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1347,
+ "endColumn": 106,
+ "endOffset": 1449
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1225,
+ "endColumn": 98,
+ "endOffset": 1319
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1454,
+ "endColumn": 98,
+ "endOffset": 1548
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1324,
+ "endColumn": 107,
+ "endOffset": 1427
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1553,
+ "endColumn": 107,
+ "endOffset": 1656
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1432,
+ "endColumn": 104,
+ "endOffset": 1532
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1661,
+ "endColumn": 104,
+ "endOffset": 1761
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1537,
+ "endColumn": 104,
+ "endOffset": 1637
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1766,
+ "endColumn": 104,
+ "endOffset": 1866
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1642,
+ "endColumn": 98,
+ "endOffset": 1736
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1871,
+ "endColumn": 98,
+ "endOffset": 1965
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1741,
+ "endColumn": 100,
+ "endOffset": 1837
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1970,
+ "endColumn": 100,
+ "endOffset": 2066
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-v11.json b/android/app/build/intermediates/blame/res/debug/multi/values-v11.json
new file mode 100644
index 00000000..d3c50e66
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-v11.json
@@ -0,0 +1,354 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11/values-v11.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endLine": 7,
+ "endColumn": 12,
+ "endOffset": 469
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 290,
+ "endLine": 9,
+ "endColumn": 12,
+ "endOffset": 704
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 474,
+ "endLine": 13,
+ "endColumn": 12,
+ "endOffset": 894
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 709,
+ "endLine": 15,
+ "endColumn": 12,
+ "endOffset": 1129
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 899,
+ "endLine": 19,
+ "endColumn": 12,
+ "endOffset": 1322
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1134,
+ "endLine": 21,
+ "endColumn": 12,
+ "endOffset": 1557
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1327,
+ "endLine": 25,
+ "endColumn": 12,
+ "endOffset": 1748
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 22,
+ "startColumn": 4,
+ "startOffset": 1562,
+ "endLine": 27,
+ "endColumn": 12,
+ "endOffset": 1983
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 26,
+ "startColumn": 4,
+ "startOffset": 1753,
+ "endLine": 31,
+ "endColumn": 12,
+ "endOffset": 2175
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 28,
+ "startColumn": 4,
+ "startOffset": 1988,
+ "endLine": 33,
+ "endColumn": 12,
+ "endOffset": 2410
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 32,
+ "startColumn": 4,
+ "startOffset": 2180,
+ "endLine": 37,
+ "endColumn": 12,
+ "endOffset": 2600
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 34,
+ "startColumn": 4,
+ "startOffset": 2415,
+ "endLine": 39,
+ "endColumn": 12,
+ "endOffset": 2835
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 38,
+ "startColumn": 4,
+ "startOffset": 2605,
+ "endColumn": 88,
+ "endOffset": 2689
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 42,
+ "startColumn": 4,
+ "startOffset": 3070,
+ "endColumn": 88,
+ "endOffset": 3154
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 39,
+ "startColumn": 4,
+ "startOffset": 2694,
+ "endColumn": 100,
+ "endOffset": 2790
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 43,
+ "startColumn": 4,
+ "startOffset": 3159,
+ "endColumn": 100,
+ "endOffset": 3255
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 40,
+ "startColumn": 4,
+ "startOffset": 2795,
+ "endLine": 44,
+ "endColumn": 12,
+ "endOffset": 3198
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 44,
+ "startColumn": 4,
+ "startOffset": 3260,
+ "endLine": 48,
+ "endColumn": 12,
+ "endOffset": 3663
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 45,
+ "startColumn": 4,
+ "startOffset": 3203,
+ "endLine": 49,
+ "endColumn": 12,
+ "endOffset": 3618
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 49,
+ "startColumn": 4,
+ "startOffset": 3668,
+ "endLine": 53,
+ "endColumn": 12,
+ "endOffset": 4083
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 50,
+ "startColumn": 4,
+ "startOffset": 3623,
+ "endLine": 51,
+ "endColumn": 12,
+ "endOffset": 3725
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 56,
+ "startColumn": 4,
+ "startOffset": 4318,
+ "endLine": 57,
+ "endColumn": 12,
+ "endOffset": 4420
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 52,
+ "startColumn": 4,
+ "startOffset": 3730,
+ "endLine": 53,
+ "endColumn": 12,
+ "endOffset": 3854
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 58,
+ "startColumn": 4,
+ "startOffset": 4425,
+ "endLine": 59,
+ "endColumn": 12,
+ "endOffset": 4549
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 54,
+ "startColumn": 4,
+ "startOffset": 3859,
+ "endColumn": 70,
+ "endOffset": 3925
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 62,
+ "startColumn": 4,
+ "startOffset": 4784,
+ "endColumn": 70,
+ "endOffset": 4850
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 55,
+ "startColumn": 4,
+ "startOffset": 3930,
+ "endColumn": 82,
+ "endOffset": 4008
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 63,
+ "startColumn": 4,
+ "startOffset": 4855,
+ "endColumn": 82,
+ "endOffset": 4933
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 56,
+ "startColumn": 4,
+ "startOffset": 4013,
+ "endLine": 106,
+ "endColumn": 12,
+ "endOffset": 7716
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 64,
+ "startColumn": 4,
+ "startOffset": 4938,
+ "endLine": 114,
+ "endColumn": 12,
+ "endOffset": 8641
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 107,
+ "startColumn": 4,
+ "startOffset": 7721,
+ "endLine": 158,
+ "endColumn": 12,
+ "endOffset": 11564
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 115,
+ "startColumn": 4,
+ "startOffset": 8646,
+ "endLine": 166,
+ "endColumn": 12,
+ "endOffset": 12489
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 159,
+ "startColumn": 4,
+ "startOffset": 11569,
+ "endColumn": 90,
+ "endOffset": 11655
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
+ "position": {
+ "startLine": 169,
+ "startColumn": 4,
+ "startOffset": 12724,
+ "endColumn": 90,
+ "endOffset": 12810
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-v12.json b/android/app/build/intermediates/blame/res/debug/multi/values-v12.json
new file mode 100644
index 00000000..d091a71a
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-v12.json
@@ -0,0 +1,87 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endLine": 4,
+ "endColumn": 12,
+ "endOffset": 274
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v12/values-v12.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 285,
+ "endLine": 6,
+ "endColumn": 12,
+ "endOffset": 504
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 279,
+ "endLine": 7,
+ "endColumn": 12,
+ "endOffset": 474
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v12/values-v12.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 509,
+ "endLine": 9,
+ "endColumn": 12,
+ "endOffset": 704
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 479,
+ "endColumn": 118,
+ "endOffset": 593
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v12/values-v12.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 709,
+ "endColumn": 118,
+ "endOffset": 823
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 598,
+ "endColumn": 94,
+ "endOffset": 688
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v12/values-v12.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 828,
+ "endColumn": 94,
+ "endOffset": 918
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-v14.json b/android/app/build/intermediates/blame/res/debug/multi/values-v14.json
new file mode 100644
index 00000000..897a7faf
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-v14.json
@@ -0,0 +1,205 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endLine": 6,
+ "endColumn": 12,
+ "endOffset": 326
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 290,
+ "endLine": 8,
+ "endColumn": 12,
+ "endOffset": 561
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 331,
+ "endColumn": 70,
+ "endOffset": 397
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 796,
+ "endColumn": 70,
+ "endOffset": 862
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 402,
+ "endColumn": 82,
+ "endOffset": 480
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 867,
+ "endColumn": 82,
+ "endOffset": 945
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 485,
+ "endLine": 14,
+ "endColumn": 12,
+ "endOffset": 890
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 950,
+ "endLine": 18,
+ "endColumn": 12,
+ "endOffset": 1355
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 895,
+ "endLine": 20,
+ "endColumn": 12,
+ "endOffset": 1312
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1360,
+ "endLine": 24,
+ "endColumn": 12,
+ "endOffset": 1777
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 1317,
+ "endColumn": 119,
+ "endOffset": 1432
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml",
+ "position": {
+ "startLine": 27,
+ "startColumn": 4,
+ "startOffset": 2007,
+ "endColumn": 119,
+ "endOffset": 2122
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 22,
+ "startColumn": 4,
+ "startOffset": 1437,
+ "endColumn": 62,
+ "endOffset": 1495
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml",
+ "position": {
+ "startLine": 28,
+ "startColumn": 4,
+ "startOffset": 2127,
+ "endColumn": 62,
+ "endOffset": 2185
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 23,
+ "startColumn": 4,
+ "startOffset": 1500,
+ "endLine": 25,
+ "endColumn": 12,
+ "endOffset": 1649
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml",
+ "position": {
+ "startLine": 29,
+ "startColumn": 4,
+ "startOffset": 2190,
+ "endLine": 31,
+ "endColumn": 12,
+ "endOffset": 2339
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 26,
+ "startColumn": 4,
+ "startOffset": 1654,
+ "endColumn": 62,
+ "endOffset": 1712
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml",
+ "position": {
+ "startLine": 32,
+ "startColumn": 4,
+ "startOffset": 2344,
+ "endColumn": 62,
+ "endOffset": 2402
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 27,
+ "startColumn": 4,
+ "startOffset": 1717,
+ "endColumn": 131,
+ "endOffset": 1844
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml",
+ "position": {
+ "startLine": 33,
+ "startColumn": 4,
+ "startOffset": 2407,
+ "endColumn": 131,
+ "endOffset": 2534
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-v17.json b/android/app/build/intermediates/blame/res/debug/multi/values-v17.json
new file mode 100644
index 00000000..12898aa4
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-v17.json
@@ -0,0 +1,280 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endLine": 4,
+ "endColumn": 12,
+ "endOffset": 223
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endLine": 6,
+ "endColumn": 12,
+ "endOffset": 452
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 228,
+ "endLine": 8,
+ "endColumn": 12,
+ "endOffset": 451
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 457,
+ "endLine": 10,
+ "endColumn": 12,
+ "endOffset": 680
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 456,
+ "endLine": 12,
+ "endColumn": 12,
+ "endOffset": 788
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 685,
+ "endLine": 14,
+ "endColumn": 12,
+ "endOffset": 1017
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 793,
+ "endLine": 15,
+ "endColumn": 12,
+ "endOffset": 946
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1022,
+ "endLine": 17,
+ "endColumn": 12,
+ "endOffset": 1175
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 951,
+ "endLine": 18,
+ "endColumn": 12,
+ "endOffset": 1096
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1180,
+ "endLine": 20,
+ "endColumn": 12,
+ "endOffset": 1325
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1101,
+ "endLine": 21,
+ "endColumn": 12,
+ "endOffset": 1268
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 1330,
+ "endLine": 23,
+ "endColumn": 12,
+ "endOffset": 1497
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 22,
+ "startColumn": 4,
+ "startOffset": 1273,
+ "endLine": 25,
+ "endColumn": 12,
+ "endOffset": 1496
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 24,
+ "startColumn": 4,
+ "startOffset": 1502,
+ "endLine": 27,
+ "endColumn": 12,
+ "endOffset": 1725
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 26,
+ "startColumn": 4,
+ "startOffset": 1501,
+ "endLine": 29,
+ "endColumn": 12,
+ "endOffset": 1738
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 28,
+ "startColumn": 4,
+ "startOffset": 1730,
+ "endLine": 31,
+ "endColumn": 12,
+ "endOffset": 1967
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 30,
+ "startColumn": 4,
+ "startOffset": 1743,
+ "endLine": 32,
+ "endColumn": 12,
+ "endOffset": 1909
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 32,
+ "startColumn": 4,
+ "startOffset": 1972,
+ "endLine": 34,
+ "endColumn": 12,
+ "endOffset": 2138
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 33,
+ "startColumn": 4,
+ "startOffset": 1914,
+ "endLine": 35,
+ "endColumn": 12,
+ "endOffset": 2083
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 35,
+ "startColumn": 4,
+ "startOffset": 2143,
+ "endLine": 37,
+ "endColumn": 12,
+ "endOffset": 2312
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 36,
+ "startColumn": 4,
+ "startOffset": 2088,
+ "endLine": 38,
+ "endColumn": 12,
+ "endOffset": 2252
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 38,
+ "startColumn": 4,
+ "startOffset": 2317,
+ "endLine": 40,
+ "endColumn": 12,
+ "endOffset": 2481
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 39,
+ "startColumn": 4,
+ "startOffset": 2257,
+ "endLine": 42,
+ "endColumn": 12,
+ "endOffset": 2525
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 41,
+ "startColumn": 4,
+ "startOffset": 2486,
+ "endLine": 44,
+ "endColumn": 12,
+ "endOffset": 2754
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 43,
+ "startColumn": 4,
+ "startOffset": 2530,
+ "endLine": 45,
+ "endColumn": 12,
+ "endOffset": 2725
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
+ "position": {
+ "startLine": 45,
+ "startColumn": 4,
+ "startOffset": 2759,
+ "endLine": 47,
+ "endColumn": 12,
+ "endOffset": 2954
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-v18.json b/android/app/build/intermediates/blame/res/debug/multi/values-v18.json
new file mode 100644
index 00000000..93df937b
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-v18.json
@@ -0,0 +1,26 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 48,
+ "endOffset": 99
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v18/values-v18.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 48,
+ "endOffset": 324
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-v21.json b/android/app/build/intermediates/blame/res/debug/multi/values-v21.json
new file mode 100644
index 00000000..62b8fecc
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-v21.json
@@ -0,0 +1,1679 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 90,
+ "endOffset": 141
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 290,
+ "endColumn": 90,
+ "endOffset": 376
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 146,
+ "endColumn": 102,
+ "endOffset": 244
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 381,
+ "endColumn": 102,
+ "endOffset": 479
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 249,
+ "endColumn": 102,
+ "endOffset": 347
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 484,
+ "endColumn": 102,
+ "endOffset": 582
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 352,
+ "endColumn": 104,
+ "endOffset": 452
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 587,
+ "endColumn": 104,
+ "endOffset": 687
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 457,
+ "endColumn": 106,
+ "endOffset": 559
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 692,
+ "endColumn": 106,
+ "endOffset": 794
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 564,
+ "endColumn": 108,
+ "endOffset": 668
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 799,
+ "endColumn": 108,
+ "endOffset": 903
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 673,
+ "endColumn": 108,
+ "endOffset": 777
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 908,
+ "endColumn": 108,
+ "endOffset": 1012
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 782,
+ "endColumn": 108,
+ "endOffset": 886
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1017,
+ "endColumn": 108,
+ "endOffset": 1121
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 891,
+ "endColumn": 108,
+ "endOffset": 995
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1126,
+ "endColumn": 108,
+ "endOffset": 1230
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1000,
+ "endColumn": 108,
+ "endOffset": 1104
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1235,
+ "endColumn": 108,
+ "endOffset": 1339
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1109,
+ "endColumn": 106,
+ "endOffset": 1211
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1344,
+ "endColumn": 106,
+ "endOffset": 1446
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1216,
+ "endColumn": 102,
+ "endOffset": 1314
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1451,
+ "endColumn": 102,
+ "endOffset": 1549
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1319,
+ "endColumn": 118,
+ "endOffset": 1433
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1554,
+ "endColumn": 118,
+ "endOffset": 1668
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1438,
+ "endLine": 16,
+ "endColumn": 12,
+ "endOffset": 1588
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1903,
+ "endLine": 20,
+ "endColumn": 12,
+ "endOffset": 2053
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1593,
+ "endLine": 18,
+ "endColumn": 12,
+ "endOffset": 1743
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2058,
+ "endLine": 22,
+ "endColumn": 12,
+ "endOffset": 2208
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1748,
+ "endColumn": 104,
+ "endOffset": 1848
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 25,
+ "startColumn": 4,
+ "startOffset": 2448,
+ "endColumn": 104,
+ "endOffset": 2548
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1853,
+ "endColumn": 120,
+ "endOffset": 1969
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 26,
+ "startColumn": 4,
+ "startOffset": 2553,
+ "endColumn": 120,
+ "endOffset": 2669
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 1974,
+ "endColumn": 100,
+ "endOffset": 2070
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 27,
+ "startColumn": 4,
+ "startOffset": 2674,
+ "endColumn": 100,
+ "endOffset": 2770
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 22,
+ "startColumn": 4,
+ "startOffset": 2075,
+ "endLine": 23,
+ "endColumn": 12,
+ "endOffset": 2217
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 30,
+ "startColumn": 4,
+ "startOffset": 3005,
+ "endLine": 31,
+ "endColumn": 12,
+ "endOffset": 3147
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 24,
+ "startColumn": 4,
+ "startOffset": 2222,
+ "endLine": 25,
+ "endColumn": 12,
+ "endOffset": 2358
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 32,
+ "startColumn": 4,
+ "startOffset": 3152,
+ "endLine": 33,
+ "endColumn": 12,
+ "endOffset": 3288
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 26,
+ "startColumn": 4,
+ "startOffset": 2363,
+ "endColumn": 102,
+ "endOffset": 2461
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 36,
+ "startColumn": 4,
+ "startOffset": 3528,
+ "endColumn": 102,
+ "endOffset": 3626
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 27,
+ "startColumn": 4,
+ "startOffset": 2466,
+ "endColumn": 118,
+ "endOffset": 2580
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 37,
+ "startColumn": 4,
+ "startOffset": 3631,
+ "endColumn": 118,
+ "endOffset": 3745
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 28,
+ "startColumn": 4,
+ "startOffset": 2585,
+ "endColumn": 106,
+ "endOffset": 2687
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 38,
+ "startColumn": 4,
+ "startOffset": 3750,
+ "endColumn": 106,
+ "endOffset": 3852
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 29,
+ "startColumn": 4,
+ "startOffset": 2692,
+ "endColumn": 102,
+ "endOffset": 2790
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 39,
+ "startColumn": 4,
+ "startOffset": 3857,
+ "endColumn": 102,
+ "endOffset": 3955
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 30,
+ "startColumn": 4,
+ "startOffset": 2795,
+ "endLine": 31,
+ "endColumn": 12,
+ "endOffset": 2937
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 42,
+ "startColumn": 4,
+ "startOffset": 4190,
+ "endLine": 43,
+ "endColumn": 12,
+ "endOffset": 4332
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 32,
+ "startColumn": 4,
+ "startOffset": 2942,
+ "endLine": 33,
+ "endColumn": 12,
+ "endOffset": 3092
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 44,
+ "startColumn": 4,
+ "startOffset": 4337,
+ "endLine": 45,
+ "endColumn": 12,
+ "endOffset": 4487
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 34,
+ "startColumn": 4,
+ "startOffset": 3097,
+ "endLine": 35,
+ "endColumn": 12,
+ "endOffset": 3263
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 46,
+ "startColumn": 4,
+ "startOffset": 4492,
+ "endLine": 47,
+ "endColumn": 12,
+ "endOffset": 4658
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 36,
+ "startColumn": 4,
+ "startOffset": 3268,
+ "endLine": 37,
+ "endColumn": 12,
+ "endOffset": 3412
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 48,
+ "startColumn": 4,
+ "startOffset": 4663,
+ "endLine": 49,
+ "endColumn": 12,
+ "endOffset": 4807
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 38,
+ "startColumn": 4,
+ "startOffset": 3417,
+ "endLine": 39,
+ "endColumn": 12,
+ "endOffset": 3577
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 50,
+ "startColumn": 4,
+ "startOffset": 4812,
+ "endLine": 51,
+ "endColumn": 12,
+ "endOffset": 4972
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 40,
+ "startColumn": 4,
+ "startOffset": 3582,
+ "endLine": 41,
+ "endColumn": 12,
+ "endOffset": 3734
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 52,
+ "startColumn": 4,
+ "startOffset": 4977,
+ "endLine": 53,
+ "endColumn": 12,
+ "endOffset": 5129
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 42,
+ "startColumn": 4,
+ "startOffset": 3739,
+ "endLine": 43,
+ "endColumn": 12,
+ "endOffset": 3885
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 54,
+ "startColumn": 4,
+ "startOffset": 5134,
+ "endLine": 55,
+ "endColumn": 12,
+ "endOffset": 5280
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 44,
+ "startColumn": 4,
+ "startOffset": 3890,
+ "endColumn": 118,
+ "endOffset": 4004
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 58,
+ "startColumn": 4,
+ "startOffset": 5520,
+ "endColumn": 118,
+ "endOffset": 5634
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 45,
+ "startColumn": 4,
+ "startOffset": 4009,
+ "endLine": 46,
+ "endColumn": 12,
+ "endOffset": 4153
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 61,
+ "startColumn": 4,
+ "startOffset": 5869,
+ "endLine": 62,
+ "endColumn": 12,
+ "endOffset": 6013
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 47,
+ "startColumn": 4,
+ "startOffset": 4158,
+ "endLine": 48,
+ "endColumn": 12,
+ "endOffset": 4302
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 63,
+ "startColumn": 4,
+ "startOffset": 6018,
+ "endLine": 64,
+ "endColumn": 12,
+ "endOffset": 6162
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 49,
+ "startColumn": 4,
+ "startOffset": 4307,
+ "endColumn": 111,
+ "endOffset": 4414
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 67,
+ "startColumn": 4,
+ "startOffset": 6402,
+ "endColumn": 111,
+ "endOffset": 6509
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 50,
+ "startColumn": 4,
+ "startOffset": 4419,
+ "endColumn": 146,
+ "endOffset": 4561
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 70,
+ "startColumn": 4,
+ "startOffset": 6744,
+ "endColumn": 146,
+ "endOffset": 6886
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 51,
+ "startColumn": 4,
+ "startOffset": 4566,
+ "endLine": 52,
+ "endColumn": 12,
+ "endOffset": 4714
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 71,
+ "startColumn": 4,
+ "startOffset": 6891,
+ "endLine": 72,
+ "endColumn": 12,
+ "endOffset": 7039
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 53,
+ "startColumn": 4,
+ "startOffset": 4719,
+ "endLine": 54,
+ "endColumn": 12,
+ "endOffset": 4861
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 73,
+ "startColumn": 4,
+ "startOffset": 7044,
+ "endLine": 74,
+ "endColumn": 12,
+ "endOffset": 7186
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 55,
+ "startColumn": 4,
+ "startOffset": 4866,
+ "endColumn": 74,
+ "endOffset": 4936
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 77,
+ "startColumn": 4,
+ "startOffset": 7421,
+ "endColumn": 74,
+ "endOffset": 7491
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 56,
+ "startColumn": 4,
+ "startOffset": 4941,
+ "endColumn": 88,
+ "endOffset": 5025
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 78,
+ "startColumn": 4,
+ "startOffset": 7496,
+ "endColumn": 88,
+ "endOffset": 7580
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 57,
+ "startColumn": 4,
+ "startOffset": 5030,
+ "endColumn": 86,
+ "endOffset": 5112
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 79,
+ "startColumn": 4,
+ "startOffset": 7585,
+ "endColumn": 86,
+ "endOffset": 7667
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 58,
+ "startColumn": 4,
+ "startOffset": 5117,
+ "endColumn": 100,
+ "endOffset": 5213
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 80,
+ "startColumn": 4,
+ "startOffset": 7672,
+ "endColumn": 100,
+ "endOffset": 7768
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 59,
+ "startColumn": 4,
+ "startOffset": 5218,
+ "endLine": 106,
+ "endColumn": 12,
+ "endOffset": 8619
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 81,
+ "startColumn": 4,
+ "startOffset": 7773,
+ "endLine": 128,
+ "endColumn": 12,
+ "endOffset": 11174
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 107,
+ "startColumn": 4,
+ "startOffset": 8624,
+ "endLine": 109,
+ "endColumn": 12,
+ "endOffset": 8805
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 129,
+ "startColumn": 4,
+ "startOffset": 11179,
+ "endLine": 131,
+ "endColumn": 12,
+ "endOffset": 11360
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 110,
+ "startColumn": 4,
+ "startOffset": 8810,
+ "endLine": 157,
+ "endColumn": 12,
+ "endOffset": 12223
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 132,
+ "startColumn": 4,
+ "startOffset": 11365,
+ "endLine": 179,
+ "endColumn": 12,
+ "endOffset": 14778
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 158,
+ "startColumn": 4,
+ "startOffset": 12228,
+ "endLine": 160,
+ "endColumn": 12,
+ "endOffset": 12421
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 180,
+ "startColumn": 4,
+ "startOffset": 14783,
+ "endLine": 182,
+ "endColumn": 12,
+ "endOffset": 14976
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 161,
+ "startColumn": 4,
+ "startOffset": 12426,
+ "endLine": 162,
+ "endColumn": 12,
+ "endOffset": 12544
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 185,
+ "startColumn": 4,
+ "startOffset": 15211,
+ "endLine": 186,
+ "endColumn": 12,
+ "endOffset": 15329
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 163,
+ "startColumn": 4,
+ "startOffset": 12549,
+ "endLine": 164,
+ "endColumn": 12,
+ "endOffset": 12667
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 187,
+ "startColumn": 4,
+ "startOffset": 15334,
+ "endLine": 188,
+ "endColumn": 12,
+ "endOffset": 15452
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 165,
+ "startColumn": 4,
+ "startOffset": 12672,
+ "endLine": 166,
+ "endColumn": 12,
+ "endOffset": 12780
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 189,
+ "startColumn": 4,
+ "startOffset": 15457,
+ "endLine": 190,
+ "endColumn": 12,
+ "endOffset": 15565
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 167,
+ "startColumn": 4,
+ "startOffset": 12785,
+ "endLine": 169,
+ "endColumn": 12,
+ "endOffset": 12963
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 191,
+ "startColumn": 4,
+ "startOffset": 15570,
+ "endLine": 193,
+ "endColumn": 12,
+ "endOffset": 15748
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 170,
+ "startColumn": 4,
+ "startOffset": 12968,
+ "endLine": 171,
+ "endColumn": 12,
+ "endOffset": 13094
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 194,
+ "startColumn": 4,
+ "startOffset": 15753,
+ "endLine": 195,
+ "endColumn": 12,
+ "endOffset": 15879
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 172,
+ "startColumn": 4,
+ "startOffset": 13099,
+ "endColumn": 116,
+ "endOffset": 13211
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 196,
+ "startColumn": 4,
+ "startOffset": 15884,
+ "endColumn": 116,
+ "endOffset": 15996
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 173,
+ "startColumn": 4,
+ "startOffset": 13216,
+ "endColumn": 88,
+ "endOffset": 13300
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 197,
+ "startColumn": 4,
+ "startOffset": 16001,
+ "endColumn": 88,
+ "endOffset": 16085
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 174,
+ "startColumn": 4,
+ "startOffset": 13305,
+ "endColumn": 110,
+ "endOffset": 13411
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 198,
+ "startColumn": 4,
+ "startOffset": 16090,
+ "endColumn": 110,
+ "endOffset": 16196
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 175,
+ "startColumn": 4,
+ "startOffset": 13416,
+ "endColumn": 126,
+ "endOffset": 13538
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 199,
+ "startColumn": 4,
+ "startOffset": 16201,
+ "endColumn": 126,
+ "endOffset": 16323
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 176,
+ "startColumn": 4,
+ "startOffset": 13543,
+ "endColumn": 100,
+ "endOffset": 13639
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 200,
+ "startColumn": 4,
+ "startOffset": 16328,
+ "endColumn": 100,
+ "endOffset": 16424
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 177,
+ "startColumn": 4,
+ "startOffset": 13644,
+ "endColumn": 94,
+ "endOffset": 13734
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 201,
+ "startColumn": 4,
+ "startOffset": 16429,
+ "endColumn": 94,
+ "endOffset": 16519
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 178,
+ "startColumn": 4,
+ "startOffset": 13739,
+ "endColumn": 122,
+ "endOffset": 13857
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 202,
+ "startColumn": 4,
+ "startOffset": 16524,
+ "endColumn": 122,
+ "endOffset": 16642
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 179,
+ "startColumn": 4,
+ "startOffset": 13862,
+ "endColumn": 128,
+ "endOffset": 13986
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 203,
+ "startColumn": 4,
+ "startOffset": 16647,
+ "endColumn": 128,
+ "endOffset": 16771
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 180,
+ "startColumn": 4,
+ "startOffset": 13991,
+ "endColumn": 116,
+ "endOffset": 14103
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 204,
+ "startColumn": 4,
+ "startOffset": 16776,
+ "endColumn": 116,
+ "endOffset": 16888
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 181,
+ "startColumn": 4,
+ "startOffset": 14108,
+ "endColumn": 92,
+ "endOffset": 14196
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 205,
+ "startColumn": 4,
+ "startOffset": 16893,
+ "endColumn": 92,
+ "endOffset": 16981
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 182,
+ "startColumn": 4,
+ "startOffset": 14201,
+ "endLine": 183,
+ "endColumn": 12,
+ "endOffset": 14331
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 206,
+ "startColumn": 4,
+ "startOffset": 16986,
+ "endLine": 207,
+ "endColumn": 12,
+ "endOffset": 17116
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 184,
+ "startColumn": 4,
+ "startOffset": 14336,
+ "endLine": 185,
+ "endColumn": 12,
+ "endOffset": 14474
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 208,
+ "startColumn": 4,
+ "startOffset": 17121,
+ "endLine": 209,
+ "endColumn": 12,
+ "endOffset": 17259
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 186,
+ "startColumn": 4,
+ "startOffset": 14479,
+ "endLine": 187,
+ "endColumn": 12,
+ "endOffset": 14609
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 210,
+ "startColumn": 4,
+ "startOffset": 17264,
+ "endLine": 211,
+ "endColumn": 12,
+ "endOffset": 17394
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 188,
+ "startColumn": 4,
+ "startOffset": 14614,
+ "endLine": 189,
+ "endColumn": 12,
+ "endOffset": 14728
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 212,
+ "startColumn": 4,
+ "startOffset": 17399,
+ "endLine": 213,
+ "endColumn": 12,
+ "endOffset": 17513
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 190,
+ "startColumn": 4,
+ "startOffset": 14733,
+ "endLine": 193,
+ "endColumn": 12,
+ "endOffset": 14929
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 214,
+ "startColumn": 4,
+ "startOffset": 17518,
+ "endLine": 217,
+ "endColumn": 12,
+ "endOffset": 17714
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 194,
+ "startColumn": 4,
+ "startOffset": 14934,
+ "endLine": 195,
+ "endColumn": 12,
+ "endOffset": 15048
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 218,
+ "startColumn": 4,
+ "startOffset": 17719,
+ "endLine": 219,
+ "endColumn": 12,
+ "endOffset": 17833
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 196,
+ "startColumn": 4,
+ "startOffset": 15053,
+ "endColumn": 92,
+ "endOffset": 15141
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 220,
+ "startColumn": 4,
+ "startOffset": 17838,
+ "endColumn": 92,
+ "endOffset": 17926
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 197,
+ "startColumn": 4,
+ "startOffset": 15146,
+ "endColumn": 110,
+ "endOffset": 15252
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 221,
+ "startColumn": 4,
+ "startOffset": 17931,
+ "endColumn": 110,
+ "endOffset": 18037
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 198,
+ "startColumn": 4,
+ "startOffset": 15257,
+ "endColumn": 55,
+ "endOffset": 15308
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 222,
+ "startColumn": 4,
+ "startOffset": 18042,
+ "endColumn": 55,
+ "endOffset": 18093
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 199,
+ "startColumn": 4,
+ "startOffset": 15313,
+ "endLine": 200,
+ "endColumn": 12,
+ "endOffset": 15415
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 223,
+ "startColumn": 4,
+ "startOffset": 18098,
+ "endLine": 224,
+ "endColumn": 12,
+ "endOffset": 18200
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 201,
+ "startColumn": 4,
+ "startOffset": 15420,
+ "endLine": 204,
+ "endColumn": 12,
+ "endOffset": 15610
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 225,
+ "startColumn": 4,
+ "startOffset": 18205,
+ "endLine": 228,
+ "endColumn": 12,
+ "endOffset": 18395
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 205,
+ "startColumn": 4,
+ "startOffset": 15615,
+ "endLine": 206,
+ "endColumn": 12,
+ "endOffset": 15721
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 229,
+ "startColumn": 4,
+ "startOffset": 18400,
+ "endLine": 230,
+ "endColumn": 12,
+ "endOffset": 18506
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 207,
+ "startColumn": 4,
+ "startOffset": 15726,
+ "endLine": 208,
+ "endColumn": 12,
+ "endOffset": 15854
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 231,
+ "startColumn": 4,
+ "startOffset": 18511,
+ "endLine": 232,
+ "endColumn": 12,
+ "endOffset": 18639
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 209,
+ "startColumn": 4,
+ "startOffset": 15859,
+ "endColumn": 94,
+ "endOffset": 15949
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 233,
+ "startColumn": 4,
+ "startOffset": 18644,
+ "endColumn": 94,
+ "endOffset": 18734
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 210,
+ "startColumn": 4,
+ "startOffset": 15954,
+ "endColumn": 90,
+ "endOffset": 16040
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 234,
+ "startColumn": 4,
+ "startOffset": 18739,
+ "endColumn": 90,
+ "endOffset": 18825
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 211,
+ "startColumn": 4,
+ "startOffset": 16045,
+ "endColumn": 112,
+ "endOffset": 16153
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 235,
+ "startColumn": 4,
+ "startOffset": 18830,
+ "endColumn": 112,
+ "endOffset": 18938
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 212,
+ "startColumn": 4,
+ "startOffset": 16158,
+ "endColumn": 116,
+ "endOffset": 16270
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 236,
+ "startColumn": 4,
+ "startOffset": 18943,
+ "endColumn": 116,
+ "endOffset": 19055
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 213,
+ "startColumn": 4,
+ "startOffset": 16275,
+ "endLine": 214,
+ "endColumn": 12,
+ "endOffset": 16409
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 237,
+ "startColumn": 4,
+ "startOffset": 19060,
+ "endLine": 238,
+ "endColumn": 12,
+ "endOffset": 19194
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 215,
+ "startColumn": 4,
+ "startOffset": 16414,
+ "endLine": 221,
+ "endColumn": 12,
+ "endOffset": 16762
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 241,
+ "startColumn": 4,
+ "startOffset": 19429,
+ "endLine": 247,
+ "endColumn": 12,
+ "endOffset": 19777
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 222,
+ "startColumn": 4,
+ "startOffset": 16767,
+ "endLine": 228,
+ "endColumn": 12,
+ "endOffset": 17127
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 248,
+ "startColumn": 4,
+ "startOffset": 19782,
+ "endLine": 254,
+ "endColumn": 12,
+ "endOffset": 20142
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 229,
+ "startColumn": 4,
+ "startOffset": 17132,
+ "endLine": 238,
+ "endColumn": 12,
+ "endOffset": 17807
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 255,
+ "startColumn": 4,
+ "startOffset": 20147,
+ "endLine": 264,
+ "endColumn": 12,
+ "endOffset": 20822
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 239,
+ "startColumn": 4,
+ "startOffset": 17812,
+ "endColumn": 56,
+ "endOffset": 17864
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 265,
+ "startColumn": 4,
+ "startOffset": 20827,
+ "endColumn": 56,
+ "endOffset": 20879
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 240,
+ "startColumn": 4,
+ "startOffset": 17869,
+ "endColumn": 57,
+ "endOffset": 17922
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
+ "position": {
+ "startLine": 266,
+ "startColumn": 4,
+ "startOffset": 20884,
+ "endColumn": 57,
+ "endOffset": 20937
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-v22.json b/android/app/build/intermediates/blame/res/debug/multi/values-v22.json
new file mode 100644
index 00000000..a28a276f
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-v22.json
@@ -0,0 +1,87 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 74,
+ "endOffset": 125
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v22/values-v22.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 285,
+ "endColumn": 74,
+ "endOffset": 355
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 130,
+ "endColumn": 86,
+ "endOffset": 212
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v22/values-v22.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 360,
+ "endColumn": 86,
+ "endOffset": 442
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 217,
+ "endLine": 6,
+ "endColumn": 12,
+ "endOffset": 393
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v22/values-v22.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 447,
+ "endLine": 8,
+ "endColumn": 12,
+ "endOffset": 623
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 398,
+ "endLine": 9,
+ "endColumn": 12,
+ "endOffset": 586
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v22/values-v22.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 628,
+ "endLine": 11,
+ "endColumn": 12,
+ "endOffset": 816
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-v23.json b/android/app/build/intermediates/blame/res/debug/multi/values-v23.json
new file mode 100644
index 00000000..9c5179ee
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-v23.json
@@ -0,0 +1,125 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 134,
+ "endOffset": 185
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 290,
+ "endColumn": 134,
+ "endOffset": 420
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 190,
+ "endColumn": 74,
+ "endOffset": 260
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 655,
+ "endColumn": 74,
+ "endOffset": 725
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 265,
+ "endColumn": 86,
+ "endOffset": 347
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 730,
+ "endColumn": 86,
+ "endOffset": 812
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 352,
+ "endLine": 10,
+ "endColumn": 12,
+ "endOffset": 675
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 817,
+ "endLine": 14,
+ "endColumn": 12,
+ "endOffset": 1140
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 680,
+ "endLine": 16,
+ "endColumn": 12,
+ "endOffset": 1015
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1145,
+ "endLine": 20,
+ "endColumn": 12,
+ "endOffset": 1480
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1020,
+ "endColumn": 104,
+ "endOffset": 1120
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml",
+ "position": {
+ "startLine": 23,
+ "startColumn": 4,
+ "startOffset": 1715,
+ "endColumn": 104,
+ "endOffset": 1815
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-vi.json b/android/app/build/intermediates/blame/res/debug/multi/values-vi.json
new file mode 100644
index 00000000..44fad43c
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-vi.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 113,
+ "endOffset": 164
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 113,
+ "endOffset": 389
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 169,
+ "endColumn": 107,
+ "endOffset": 272
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 394,
+ "endColumn": 107,
+ "endOffset": 497
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 277,
+ "endColumn": 122,
+ "endOffset": 395
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 502,
+ "endColumn": 122,
+ "endOffset": 620
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 400,
+ "endColumn": 107,
+ "endOffset": 503
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 625,
+ "endColumn": 107,
+ "endOffset": 728
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 508,
+ "endColumn": 108,
+ "endOffset": 612
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 733,
+ "endColumn": 108,
+ "endOffset": 837
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 617,
+ "endColumn": 83,
+ "endOffset": 696
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 842,
+ "endColumn": 83,
+ "endOffset": 921
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 701,
+ "endColumn": 102,
+ "endOffset": 799
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 926,
+ "endColumn": 102,
+ "endOffset": 1024
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 804,
+ "endColumn": 118,
+ "endOffset": 918
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1029,
+ "endColumn": 118,
+ "endOffset": 1143
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 923,
+ "endColumn": 83,
+ "endOffset": 1002
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1148,
+ "endColumn": 83,
+ "endOffset": 1227
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1007,
+ "endColumn": 103,
+ "endOffset": 1106
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1232,
+ "endColumn": 103,
+ "endOffset": 1331
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1111,
+ "endColumn": 108,
+ "endOffset": 1215
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1336,
+ "endColumn": 108,
+ "endOffset": 1440
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1220,
+ "endColumn": 100,
+ "endOffset": 1316
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1445,
+ "endColumn": 100,
+ "endOffset": 1541
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1321,
+ "endColumn": 104,
+ "endOffset": 1421
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1546,
+ "endColumn": 104,
+ "endOffset": 1646
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1426,
+ "endColumn": 113,
+ "endOffset": 1535
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1651,
+ "endColumn": 113,
+ "endOffset": 1760
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1540,
+ "endColumn": 104,
+ "endOffset": 1640
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1765,
+ "endColumn": 104,
+ "endOffset": 1865
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1645,
+ "endColumn": 119,
+ "endOffset": 1760
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1870,
+ "endColumn": 119,
+ "endOffset": 1985
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1765,
+ "endColumn": 98,
+ "endOffset": 1859
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1990,
+ "endColumn": 98,
+ "endOffset": 2084
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1864,
+ "endColumn": 100,
+ "endOffset": 1960
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2089,
+ "endColumn": 100,
+ "endOffset": 2185
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json b/android/app/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json
new file mode 100644
index 00000000..00c88a76
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json
@@ -0,0 +1,26 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 54,
+ "endOffset": 105
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w360dp/values-w360dp.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 283,
+ "endColumn": 54,
+ "endOffset": 333
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json b/android/app/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json
new file mode 100644
index 00000000..ca03a644
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json
@@ -0,0 +1,45 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 61,
+ "endOffset": 112
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w480dp/values-w480dp.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 282,
+ "endColumn": 61,
+ "endOffset": 339
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 117,
+ "endColumn": 71,
+ "endOffset": 184
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w480dp/values-w480dp.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 572,
+ "endColumn": 71,
+ "endOffset": 639
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json b/android/app/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json
new file mode 100644
index 00000000..b287c7f8
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json
@@ -0,0 +1,26 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 54,
+ "endOffset": 105
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w500dp/values-w500dp.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 283,
+ "endColumn": 54,
+ "endOffset": 333
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json b/android/app/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json
new file mode 100644
index 00000000..a5620dde
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json
@@ -0,0 +1,45 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 63,
+ "endOffset": 114
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w600dp/values-w600dp.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 283,
+ "endColumn": 63,
+ "endOffset": 342
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 119,
+ "endColumn": 54,
+ "endOffset": 169
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w600dp/values-w600dp.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 347,
+ "endColumn": 54,
+ "endOffset": 397
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json b/android/app/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json
new file mode 100644
index 00000000..74ec8b38
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json
@@ -0,0 +1,26 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 76,
+ "endOffset": 127
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w720dp/values-w720dp.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 282,
+ "endColumn": 76,
+ "endOffset": 354
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json b/android/app/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json
new file mode 100644
index 00000000..febc0a0f
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json
@@ -0,0 +1,26 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 63,
+ "endOffset": 114
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge-land/values-xlarge-land.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 288,
+ "endColumn": 63,
+ "endOffset": 347
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json b/android/app/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json
new file mode 100644
index 00000000..61ac5b11
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json
@@ -0,0 +1,140 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 76,
+ "endOffset": 127
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 282,
+ "endColumn": 76,
+ "endOffset": 354
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 132,
+ "endColumn": 63,
+ "endOffset": 191
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 587,
+ "endColumn": 63,
+ "endOffset": 646
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 196,
+ "endColumn": 66,
+ "endOffset": 258
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 651,
+ "endColumn": 66,
+ "endOffset": 713
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 263,
+ "endColumn": 66,
+ "endOffset": 325
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 718,
+ "endColumn": 66,
+ "endOffset": 780
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 330,
+ "endColumn": 65,
+ "endOffset": 391
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 785,
+ "endColumn": 65,
+ "endOffset": 846
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 396,
+ "endColumn": 65,
+ "endOffset": 457
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 851,
+ "endColumn": 65,
+ "endOffset": 912
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 462,
+ "endColumn": 54,
+ "endOffset": 512
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 917,
+ "endColumn": 54,
+ "endOffset": 967
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-zh-rCN.json b/android/app/build/intermediates/blame/res/debug/multi/values-zh-rCN.json
new file mode 100644
index 00000000..5421b7c4
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-zh-rCN.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 95,
+ "endOffset": 146
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 95,
+ "endOffset": 375
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 151,
+ "endColumn": 106,
+ "endOffset": 253
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 380,
+ "endColumn": 106,
+ "endOffset": 482
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 258,
+ "endColumn": 122,
+ "endOffset": 376
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 487,
+ "endColumn": 122,
+ "endOffset": 605
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 381,
+ "endColumn": 94,
+ "endOffset": 471
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 610,
+ "endColumn": 94,
+ "endOffset": 700
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 476,
+ "endColumn": 99,
+ "endOffset": 571
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 705,
+ "endColumn": 99,
+ "endOffset": 800
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 576,
+ "endColumn": 81,
+ "endOffset": 653
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 805,
+ "endColumn": 81,
+ "endOffset": 882
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 658,
+ "endColumn": 96,
+ "endOffset": 750
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 887,
+ "endColumn": 96,
+ "endOffset": 979
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 755,
+ "endColumn": 105,
+ "endOffset": 856
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 984,
+ "endColumn": 105,
+ "endOffset": 1085
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 861,
+ "endColumn": 77,
+ "endOffset": 934
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1090,
+ "endColumn": 77,
+ "endOffset": 1163
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 939,
+ "endColumn": 95,
+ "endOffset": 1030
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1168,
+ "endColumn": 95,
+ "endOffset": 1259
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1035,
+ "endColumn": 95,
+ "endOffset": 1126
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1264,
+ "endColumn": 95,
+ "endOffset": 1355
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1131,
+ "endColumn": 94,
+ "endOffset": 1221
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1360,
+ "endColumn": 94,
+ "endOffset": 1450
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1226,
+ "endColumn": 96,
+ "endOffset": 1318
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1455,
+ "endColumn": 96,
+ "endOffset": 1547
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1323,
+ "endColumn": 94,
+ "endOffset": 1413
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1552,
+ "endColumn": 94,
+ "endOffset": 1642
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1418,
+ "endColumn": 97,
+ "endOffset": 1511
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1647,
+ "endColumn": 97,
+ "endOffset": 1740
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1516,
+ "endColumn": 111,
+ "endOffset": 1623
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1745,
+ "endColumn": 111,
+ "endOffset": 1852
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1628,
+ "endColumn": 93,
+ "endOffset": 1717
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1857,
+ "endColumn": 93,
+ "endOffset": 1946
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1722,
+ "endColumn": 100,
+ "endOffset": 1818
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 1951,
+ "endColumn": 100,
+ "endOffset": 2047
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-zh-rHK.json b/android/app/build/intermediates/blame/res/debug/multi/values-zh-rHK.json
new file mode 100644
index 00000000..591fd381
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-zh-rHK.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 94,
+ "endOffset": 145
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 94,
+ "endOffset": 374
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 150,
+ "endColumn": 106,
+ "endOffset": 252
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 379,
+ "endColumn": 106,
+ "endOffset": 481
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 257,
+ "endColumn": 122,
+ "endOffset": 375
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 486,
+ "endColumn": 122,
+ "endOffset": 604
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 380,
+ "endColumn": 92,
+ "endOffset": 468
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 609,
+ "endColumn": 92,
+ "endOffset": 697
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 473,
+ "endColumn": 99,
+ "endOffset": 568
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 702,
+ "endColumn": 99,
+ "endOffset": 797
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 573,
+ "endColumn": 81,
+ "endOffset": 650
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 802,
+ "endColumn": 81,
+ "endOffset": 879
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 655,
+ "endColumn": 96,
+ "endOffset": 747
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 884,
+ "endColumn": 96,
+ "endOffset": 976
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 752,
+ "endColumn": 107,
+ "endOffset": 855
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 981,
+ "endColumn": 107,
+ "endOffset": 1084
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 860,
+ "endColumn": 77,
+ "endOffset": 933
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1089,
+ "endColumn": 77,
+ "endOffset": 1162
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 938,
+ "endColumn": 95,
+ "endOffset": 1029
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1167,
+ "endColumn": 95,
+ "endOffset": 1258
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1034,
+ "endColumn": 95,
+ "endOffset": 1125
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1263,
+ "endColumn": 95,
+ "endOffset": 1354
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1130,
+ "endColumn": 94,
+ "endOffset": 1220
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1359,
+ "endColumn": 94,
+ "endOffset": 1449
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1225,
+ "endColumn": 96,
+ "endOffset": 1317
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1454,
+ "endColumn": 96,
+ "endOffset": 1546
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1322,
+ "endColumn": 94,
+ "endOffset": 1412
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1551,
+ "endColumn": 94,
+ "endOffset": 1641
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1417,
+ "endColumn": 97,
+ "endOffset": 1510
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1646,
+ "endColumn": 97,
+ "endOffset": 1739
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1515,
+ "endColumn": 112,
+ "endOffset": 1623
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1744,
+ "endColumn": 112,
+ "endOffset": 1852
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1628,
+ "endColumn": 93,
+ "endOffset": 1717
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1857,
+ "endColumn": 93,
+ "endOffset": 1946
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1722,
+ "endColumn": 101,
+ "endOffset": 1819
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 1951,
+ "endColumn": 101,
+ "endOffset": 2048
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-zh-rTW.json b/android/app/build/intermediates/blame/res/debug/multi/values-zh-rTW.json
new file mode 100644
index 00000000..41a10ba6
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-zh-rTW.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 94,
+ "endOffset": 145
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 284,
+ "endColumn": 94,
+ "endOffset": 374
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 150,
+ "endColumn": 106,
+ "endOffset": 252
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 379,
+ "endColumn": 106,
+ "endOffset": 481
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 257,
+ "endColumn": 122,
+ "endOffset": 375
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 486,
+ "endColumn": 122,
+ "endOffset": 604
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 380,
+ "endColumn": 92,
+ "endOffset": 468
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 609,
+ "endColumn": 92,
+ "endOffset": 697
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 473,
+ "endColumn": 99,
+ "endOffset": 568
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 702,
+ "endColumn": 99,
+ "endOffset": 797
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 573,
+ "endColumn": 81,
+ "endOffset": 650
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 802,
+ "endColumn": 81,
+ "endOffset": 879
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 655,
+ "endColumn": 96,
+ "endOffset": 747
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 884,
+ "endColumn": 96,
+ "endOffset": 976
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 752,
+ "endColumn": 107,
+ "endOffset": 855
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 981,
+ "endColumn": 107,
+ "endOffset": 1084
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 860,
+ "endColumn": 77,
+ "endOffset": 933
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1089,
+ "endColumn": 77,
+ "endOffset": 1162
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 938,
+ "endColumn": 95,
+ "endOffset": 1029
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1167,
+ "endColumn": 95,
+ "endOffset": 1258
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1034,
+ "endColumn": 95,
+ "endOffset": 1125
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1263,
+ "endColumn": 95,
+ "endOffset": 1354
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1130,
+ "endColumn": 94,
+ "endOffset": 1220
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1359,
+ "endColumn": 94,
+ "endOffset": 1449
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1225,
+ "endColumn": 96,
+ "endOffset": 1317
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1454,
+ "endColumn": 96,
+ "endOffset": 1546
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1322,
+ "endColumn": 94,
+ "endOffset": 1412
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1551,
+ "endColumn": 94,
+ "endOffset": 1641
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1417,
+ "endColumn": 99,
+ "endOffset": 1512
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1646,
+ "endColumn": 99,
+ "endOffset": 1741
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1517,
+ "endColumn": 112,
+ "endOffset": 1625
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1746,
+ "endColumn": 112,
+ "endOffset": 1854
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1630,
+ "endColumn": 93,
+ "endOffset": 1719
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1859,
+ "endColumn": 93,
+ "endOffset": 1948
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1724,
+ "endColumn": 100,
+ "endOffset": 1820
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 1953,
+ "endColumn": 100,
+ "endOffset": 2049
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values-zu.json b/android/app/build/intermediates/blame/res/debug/multi/values-zu.json
new file mode 100644
index 00000000..805194e1
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values-zu.json
@@ -0,0 +1,349 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 55,
+ "endColumn": 107,
+ "endOffset": 158
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 280,
+ "endColumn": 107,
+ "endOffset": 383
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 163,
+ "endColumn": 107,
+ "endOffset": 266
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 388,
+ "endColumn": 107,
+ "endOffset": 491
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 271,
+ "endColumn": 122,
+ "endOffset": 389
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 496,
+ "endColumn": 122,
+ "endOffset": 614
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 394,
+ "endColumn": 106,
+ "endOffset": 496
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 619,
+ "endColumn": 106,
+ "endOffset": 721
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 501,
+ "endColumn": 113,
+ "endOffset": 610
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 726,
+ "endColumn": 113,
+ "endOffset": 835
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 615,
+ "endColumn": 87,
+ "endOffset": 698
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 840,
+ "endColumn": 87,
+ "endOffset": 923
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 703,
+ "endColumn": 102,
+ "endOffset": 801
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 928,
+ "endColumn": 102,
+ "endOffset": 1026
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 806,
+ "endColumn": 126,
+ "endOffset": 928
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1031,
+ "endColumn": 126,
+ "endOffset": 1153
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 933,
+ "endColumn": 85,
+ "endOffset": 1014
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1158,
+ "endColumn": 85,
+ "endOffset": 1239
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 1019,
+ "endColumn": 103,
+ "endOffset": 1118
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1244,
+ "endColumn": 103,
+ "endOffset": 1343
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1123,
+ "endColumn": 105,
+ "endOffset": 1224
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1348,
+ "endColumn": 105,
+ "endOffset": 1449
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1229,
+ "endColumn": 97,
+ "endOffset": 1322
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1454,
+ "endColumn": 97,
+ "endOffset": 1547
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1327,
+ "endColumn": 106,
+ "endOffset": 1429
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1552,
+ "endColumn": 106,
+ "endOffset": 1654
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1434,
+ "endColumn": 105,
+ "endOffset": 1535
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1659,
+ "endColumn": 105,
+ "endOffset": 1760
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1540,
+ "endColumn": 105,
+ "endOffset": 1641
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1765,
+ "endColumn": 105,
+ "endOffset": 1866
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1646,
+ "endColumn": 119,
+ "endOffset": 1761
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1871,
+ "endColumn": 119,
+ "endOffset": 1986
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1766,
+ "endColumn": 95,
+ "endOffset": 1857
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1991,
+ "endColumn": 95,
+ "endOffset": 2082
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1862,
+ "endColumn": 100,
+ "endOffset": 1958
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2087,
+ "endColumn": 100,
+ "endOffset": 2183
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/multi/values.json b/android/app/build/intermediates/blame/res/debug/multi/values.json
new file mode 100644
index 00000000..9adcc080
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/multi/values.json
@@ -0,0 +1,10060 @@
+[
+ {
+ "outputFile": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml",
+ "map": [
+ {
+ "to": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 100,
+ "endColumn": 54,
+ "endOffset": 150
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 275,
+ "endColumn": 54,
+ "endOffset": 325
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 155,
+ "endColumn": 44,
+ "endOffset": 195
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 330,
+ "endColumn": 44,
+ "endOffset": 370
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 200,
+ "endColumn": 48,
+ "endOffset": 244
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 375,
+ "endColumn": 48,
+ "endOffset": 419
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 249,
+ "endColumn": 40,
+ "endOffset": 285
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 424,
+ "endColumn": 40,
+ "endOffset": 460
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 290,
+ "endColumn": 54,
+ "endOffset": 340
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 685,
+ "endColumn": 54,
+ "endOffset": 735
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 345,
+ "endColumn": 62,
+ "endOffset": 403
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 740,
+ "endColumn": 62,
+ "endOffset": 798
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 408,
+ "endColumn": 75,
+ "endOffset": 479
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 803,
+ "endColumn": 75,
+ "endOffset": 874
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 484,
+ "endColumn": 61,
+ "endOffset": 541
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1100,
+ "endColumn": 61,
+ "endOffset": 1157
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 546,
+ "endColumn": 72,
+ "endOffset": 614
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1162,
+ "endColumn": 72,
+ "endOffset": 1230
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 619,
+ "endColumn": 67,
+ "endOffset": 682
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1235,
+ "endColumn": 67,
+ "endOffset": 1298
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 687,
+ "endColumn": 77,
+ "endOffset": 760
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1523,
+ "endColumn": 77,
+ "endOffset": 1596
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 765,
+ "endColumn": 80,
+ "endOffset": 841
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 23,
+ "startColumn": 4,
+ "startOffset": 1822,
+ "endColumn": 80,
+ "endOffset": 1898
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 846,
+ "endColumn": 60,
+ "endOffset": 902
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 24,
+ "startColumn": 4,
+ "startOffset": 1903,
+ "endColumn": 60,
+ "endOffset": 1959
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 907,
+ "endColumn": 74,
+ "endOffset": 977
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 25,
+ "startColumn": 4,
+ "startOffset": 1964,
+ "endColumn": 74,
+ "endOffset": 2034
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 982,
+ "endColumn": 75,
+ "endOffset": 1053
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 26,
+ "startColumn": 4,
+ "startOffset": 2039,
+ "endColumn": 75,
+ "endOffset": 2110
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1058,
+ "endColumn": 76,
+ "endOffset": 1130
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 29,
+ "startColumn": 4,
+ "startOffset": 2345,
+ "endColumn": 76,
+ "endOffset": 2417
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1135,
+ "endColumn": 77,
+ "endOffset": 1208
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 30,
+ "startColumn": 4,
+ "startOffset": 2422,
+ "endColumn": 77,
+ "endOffset": 2495
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1213,
+ "endColumn": 84,
+ "endOffset": 1293
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 31,
+ "startColumn": 4,
+ "startOffset": 2500,
+ "endColumn": 84,
+ "endOffset": 2580
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 1298,
+ "endColumn": 81,
+ "endOffset": 1375
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 32,
+ "startColumn": 4,
+ "startOffset": 2585,
+ "endColumn": 81,
+ "endOffset": 2662
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 1380,
+ "endColumn": 75,
+ "endOffset": 1451
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 33,
+ "startColumn": 4,
+ "startOffset": 2667,
+ "endColumn": 75,
+ "endOffset": 2738
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 22,
+ "startColumn": 4,
+ "startOffset": 1456,
+ "endColumn": 75,
+ "endOffset": 1527
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 34,
+ "startColumn": 4,
+ "startOffset": 2743,
+ "endColumn": 75,
+ "endOffset": 2814
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 23,
+ "startColumn": 4,
+ "startOffset": 1532,
+ "endColumn": 76,
+ "endOffset": 1604
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 35,
+ "startColumn": 4,
+ "startOffset": 2819,
+ "endColumn": 76,
+ "endOffset": 2891
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 24,
+ "startColumn": 4,
+ "startOffset": 1609,
+ "endColumn": 77,
+ "endOffset": 1682
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 36,
+ "startColumn": 4,
+ "startOffset": 2896,
+ "endColumn": 77,
+ "endOffset": 2969
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 25,
+ "startColumn": 4,
+ "startOffset": 1687,
+ "endColumn": 105,
+ "endOffset": 1788
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 37,
+ "startColumn": 4,
+ "startOffset": 2974,
+ "endColumn": 105,
+ "endOffset": 3075
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 26,
+ "startColumn": 4,
+ "startOffset": 1793,
+ "endColumn": 105,
+ "endOffset": 1894
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 38,
+ "startColumn": 4,
+ "startOffset": 3080,
+ "endColumn": 105,
+ "endOffset": 3181
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 27,
+ "startColumn": 4,
+ "startOffset": 1899,
+ "endColumn": 78,
+ "endOffset": 1973
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 39,
+ "startColumn": 4,
+ "startOffset": 3186,
+ "endColumn": 78,
+ "endOffset": 3260
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 28,
+ "startColumn": 4,
+ "startOffset": 1978,
+ "endColumn": 79,
+ "endOffset": 2053
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 40,
+ "startColumn": 4,
+ "startOffset": 3265,
+ "endColumn": 79,
+ "endOffset": 3340
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 29,
+ "startColumn": 4,
+ "startOffset": 2058,
+ "endColumn": 56,
+ "endOffset": 2110
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 41,
+ "startColumn": 4,
+ "startOffset": 3345,
+ "endColumn": 56,
+ "endOffset": 3397
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 30,
+ "startColumn": 4,
+ "startOffset": 2115,
+ "endColumn": 57,
+ "endOffset": 2168
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 42,
+ "startColumn": 4,
+ "startOffset": 3402,
+ "endColumn": 57,
+ "endOffset": 3455
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 31,
+ "startColumn": 4,
+ "startOffset": 2173,
+ "endColumn": 62,
+ "endOffset": 2231
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 2,
+ "startColumn": 4,
+ "startOffset": 100,
+ "endColumn": 62,
+ "endOffset": 158
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 32,
+ "startColumn": 4,
+ "startOffset": 2236,
+ "endColumn": 73,
+ "endOffset": 2305
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 43,
+ "startColumn": 4,
+ "startOffset": 3460,
+ "endColumn": 73,
+ "endOffset": 3529
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 33,
+ "startColumn": 4,
+ "startOffset": 2310,
+ "endColumn": 74,
+ "endOffset": 2380
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 44,
+ "startColumn": 4,
+ "startOffset": 3534,
+ "endColumn": 74,
+ "endOffset": 3604
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 34,
+ "startColumn": 4,
+ "startOffset": 2385,
+ "endColumn": 64,
+ "endOffset": 2445
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 45,
+ "startColumn": 4,
+ "startOffset": 3609,
+ "endColumn": 64,
+ "endOffset": 3669
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 35,
+ "startColumn": 4,
+ "startOffset": 2450,
+ "endColumn": 65,
+ "endOffset": 2511
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 46,
+ "startColumn": 4,
+ "startOffset": 3674,
+ "endColumn": 65,
+ "endOffset": 3735
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 36,
+ "startColumn": 4,
+ "startOffset": 2516,
+ "endColumn": 71,
+ "endOffset": 2583
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 47,
+ "startColumn": 4,
+ "startOffset": 3740,
+ "endColumn": 71,
+ "endOffset": 3807
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 37,
+ "startColumn": 4,
+ "startOffset": 2588,
+ "endColumn": 72,
+ "endOffset": 2656
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 48,
+ "startColumn": 4,
+ "startOffset": 3812,
+ "endColumn": 72,
+ "endOffset": 3880
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 38,
+ "startColumn": 4,
+ "startOffset": 2661,
+ "endColumn": 66,
+ "endOffset": 2723
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 49,
+ "startColumn": 4,
+ "startOffset": 3885,
+ "endColumn": 66,
+ "endOffset": 3947
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 39,
+ "startColumn": 4,
+ "startOffset": 2728,
+ "endColumn": 67,
+ "endOffset": 2791
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 50,
+ "startColumn": 4,
+ "startOffset": 3952,
+ "endColumn": 67,
+ "endOffset": 4015
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 40,
+ "startColumn": 4,
+ "startOffset": 2796,
+ "endColumn": 103,
+ "endOffset": 2895
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 51,
+ "startColumn": 4,
+ "startOffset": 4020,
+ "endColumn": 103,
+ "endOffset": 4119
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 41,
+ "startColumn": 4,
+ "startOffset": 2900,
+ "endColumn": 105,
+ "endOffset": 3001
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 52,
+ "startColumn": 4,
+ "startOffset": 4124,
+ "endColumn": 105,
+ "endOffset": 4225
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 42,
+ "startColumn": 4,
+ "startOffset": 3006,
+ "endColumn": 58,
+ "endOffset": 3060
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 53,
+ "startColumn": 4,
+ "startOffset": 4230,
+ "endColumn": 58,
+ "endOffset": 4284
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 43,
+ "startColumn": 4,
+ "startOffset": 3065,
+ "endColumn": 58,
+ "endOffset": 3119
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 54,
+ "startColumn": 4,
+ "startOffset": 4289,
+ "endColumn": 58,
+ "endOffset": 4343
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 44,
+ "startColumn": 4,
+ "startOffset": 3124,
+ "endColumn": 58,
+ "endOffset": 3178
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 55,
+ "startColumn": 4,
+ "startOffset": 4348,
+ "endColumn": 58,
+ "endOffset": 4402
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 45,
+ "startColumn": 4,
+ "startOffset": 3183,
+ "endColumn": 58,
+ "endOffset": 3237
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 56,
+ "startColumn": 4,
+ "startOffset": 4407,
+ "endColumn": 58,
+ "endOffset": 4461
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 46,
+ "startColumn": 4,
+ "startOffset": 3242,
+ "endColumn": 58,
+ "endOffset": 3296
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 57,
+ "startColumn": 4,
+ "startOffset": 4466,
+ "endColumn": 58,
+ "endOffset": 4520
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 47,
+ "startColumn": 4,
+ "startOffset": 3301,
+ "endColumn": 53,
+ "endOffset": 3350
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 58,
+ "startColumn": 4,
+ "startOffset": 4525,
+ "endColumn": 53,
+ "endOffset": 4574
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 48,
+ "startColumn": 4,
+ "startOffset": 3355,
+ "endColumn": 53,
+ "endOffset": 3404
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 59,
+ "startColumn": 4,
+ "startOffset": 4579,
+ "endColumn": 53,
+ "endOffset": 4628
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 49,
+ "startColumn": 4,
+ "startOffset": 3409,
+ "endColumn": 52,
+ "endOffset": 3457
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 60,
+ "startColumn": 4,
+ "startOffset": 4633,
+ "endColumn": 52,
+ "endOffset": 4681
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 50,
+ "startColumn": 4,
+ "startOffset": 3462,
+ "endColumn": 53,
+ "endOffset": 3511
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 61,
+ "startColumn": 4,
+ "startOffset": 4686,
+ "endColumn": 53,
+ "endOffset": 4735
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 51,
+ "startColumn": 4,
+ "startOffset": 3516,
+ "endColumn": 53,
+ "endOffset": 3565
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 62,
+ "startColumn": 4,
+ "startOffset": 4740,
+ "endColumn": 53,
+ "endOffset": 4789
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 52,
+ "startColumn": 4,
+ "startOffset": 3570,
+ "endColumn": 53,
+ "endOffset": 3619
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 63,
+ "startColumn": 4,
+ "startOffset": 4794,
+ "endColumn": 53,
+ "endOffset": 4843
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 53,
+ "startColumn": 4,
+ "startOffset": 3624,
+ "endColumn": 53,
+ "endOffset": 3673
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 64,
+ "startColumn": 4,
+ "startOffset": 4848,
+ "endColumn": 53,
+ "endOffset": 4897
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 54,
+ "startColumn": 4,
+ "startOffset": 3678,
+ "endColumn": 73,
+ "endOffset": 3747
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 65,
+ "startColumn": 4,
+ "startOffset": 4902,
+ "endColumn": 73,
+ "endOffset": 4971
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 55,
+ "startColumn": 4,
+ "startOffset": 3752,
+ "endColumn": 78,
+ "endOffset": 3826
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 66,
+ "startColumn": 4,
+ "startOffset": 4976,
+ "endColumn": 78,
+ "endOffset": 5050
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 56,
+ "startColumn": 4,
+ "startOffset": 3831,
+ "endColumn": 72,
+ "endOffset": 3899
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 67,
+ "startColumn": 4,
+ "startOffset": 5055,
+ "endColumn": 72,
+ "endOffset": 5123
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 57,
+ "startColumn": 4,
+ "startOffset": 3904,
+ "endColumn": 73,
+ "endOffset": 3973
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 68,
+ "startColumn": 4,
+ "startOffset": 5128,
+ "endColumn": 73,
+ "endOffset": 5197
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 58,
+ "startColumn": 4,
+ "startOffset": 3978,
+ "endColumn": 70,
+ "endOffset": 4044
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 69,
+ "startColumn": 4,
+ "startOffset": 5202,
+ "endColumn": 70,
+ "endOffset": 5268
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 59,
+ "startColumn": 4,
+ "startOffset": 4049,
+ "endColumn": 71,
+ "endOffset": 4116
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 70,
+ "startColumn": 4,
+ "startOffset": 5273,
+ "endColumn": 71,
+ "endOffset": 5340
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 60,
+ "startColumn": 4,
+ "startOffset": 4121,
+ "endColumn": 71,
+ "endOffset": 4188
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 71,
+ "startColumn": 4,
+ "startOffset": 5345,
+ "endColumn": 71,
+ "endOffset": 5412
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 61,
+ "startColumn": 4,
+ "startOffset": 4193,
+ "endColumn": 72,
+ "endOffset": 4261
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 72,
+ "startColumn": 4,
+ "startOffset": 5417,
+ "endColumn": 72,
+ "endOffset": 5485
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 62,
+ "startColumn": 4,
+ "startOffset": 4266,
+ "endColumn": 56,
+ "endOffset": 4318
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 73,
+ "startColumn": 4,
+ "startOffset": 5490,
+ "endColumn": 56,
+ "endOffset": 5542
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 63,
+ "startColumn": 4,
+ "startOffset": 4323,
+ "endColumn": 57,
+ "endOffset": 4376
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 74,
+ "startColumn": 4,
+ "startOffset": 5547,
+ "endColumn": 57,
+ "endOffset": 5600
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 64,
+ "startColumn": 4,
+ "startOffset": 4381,
+ "endColumn": 72,
+ "endOffset": 4449
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 75,
+ "startColumn": 4,
+ "startOffset": 5605,
+ "endColumn": 72,
+ "endOffset": 5673
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 65,
+ "startColumn": 4,
+ "startOffset": 4454,
+ "endColumn": 73,
+ "endOffset": 4523
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 76,
+ "startColumn": 4,
+ "startOffset": 5678,
+ "endColumn": 73,
+ "endOffset": 5747
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 66,
+ "startColumn": 4,
+ "startOffset": 4528,
+ "endColumn": 73,
+ "endOffset": 4597
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 77,
+ "startColumn": 4,
+ "startOffset": 5752,
+ "endColumn": 73,
+ "endOffset": 5821
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 67,
+ "startColumn": 4,
+ "startOffset": 4602,
+ "endColumn": 74,
+ "endOffset": 4672
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 78,
+ "startColumn": 4,
+ "startOffset": 5826,
+ "endColumn": 74,
+ "endOffset": 5896
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 68,
+ "startColumn": 4,
+ "startOffset": 4677,
+ "endColumn": 71,
+ "endOffset": 4744
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 79,
+ "startColumn": 4,
+ "startOffset": 5901,
+ "endColumn": 71,
+ "endOffset": 5968
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 69,
+ "startColumn": 4,
+ "startOffset": 4749,
+ "endColumn": 72,
+ "endOffset": 4817
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 80,
+ "startColumn": 4,
+ "startOffset": 5973,
+ "endColumn": 72,
+ "endOffset": 6041
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 70,
+ "startColumn": 4,
+ "startOffset": 4822,
+ "endColumn": 69,
+ "endOffset": 4887
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 81,
+ "startColumn": 4,
+ "startOffset": 6046,
+ "endColumn": 69,
+ "endOffset": 6111
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 71,
+ "startColumn": 4,
+ "startOffset": 4892,
+ "endColumn": 70,
+ "endOffset": 4958
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 82,
+ "startColumn": 4,
+ "startOffset": 6116,
+ "endColumn": 70,
+ "endOffset": 6182
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 152,
+ "startColumn": 4,
+ "startOffset": 24475,
+ "endColumn": 68,
+ "endOffset": 24539
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 112,
+ "startColumn": 4,
+ "startOffset": 22125,
+ "endColumn": 68,
+ "endOffset": 22189
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 153,
+ "startColumn": 4,
+ "startOffset": 24544,
+ "endColumn": 69,
+ "endOffset": 24609
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 113,
+ "startColumn": 4,
+ "startOffset": 22194,
+ "endColumn": 69,
+ "endOffset": 22259
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 154,
+ "startColumn": 4,
+ "startOffset": 24614,
+ "endColumn": 73,
+ "endOffset": 24683
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 114,
+ "startColumn": 4,
+ "startOffset": 22264,
+ "endColumn": 73,
+ "endOffset": 22333
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 155,
+ "startColumn": 4,
+ "startOffset": 24688,
+ "endColumn": 75,
+ "endOffset": 24759
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 115,
+ "startColumn": 4,
+ "startOffset": 22338,
+ "endColumn": 75,
+ "endOffset": 22409
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 156,
+ "startColumn": 4,
+ "startOffset": 24764,
+ "endColumn": 76,
+ "endOffset": 24836
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 116,
+ "startColumn": 4,
+ "startOffset": 22414,
+ "endColumn": 76,
+ "endOffset": 22486
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 157,
+ "startColumn": 4,
+ "startOffset": 24841,
+ "endColumn": 75,
+ "endOffset": 24912
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 117,
+ "startColumn": 4,
+ "startOffset": 22491,
+ "endColumn": 75,
+ "endOffset": 22562
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 158,
+ "startColumn": 4,
+ "startOffset": 24917,
+ "endColumn": 76,
+ "endOffset": 24989
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 118,
+ "startColumn": 4,
+ "startOffset": 22567,
+ "endColumn": 76,
+ "endOffset": 22639
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 159,
+ "startColumn": 4,
+ "startOffset": 24994,
+ "endColumn": 63,
+ "endOffset": 25053
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 121,
+ "startColumn": 4,
+ "startOffset": 22865,
+ "endColumn": 63,
+ "endOffset": 22924
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 160,
+ "startColumn": 4,
+ "startOffset": 25058,
+ "endColumn": 64,
+ "endOffset": 25118
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 122,
+ "startColumn": 4,
+ "startOffset": 22929,
+ "endColumn": 64,
+ "endOffset": 22989
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 161,
+ "startColumn": 4,
+ "startOffset": 25123,
+ "endColumn": 68,
+ "endOffset": 25187
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 123,
+ "startColumn": 4,
+ "startOffset": 22994,
+ "endColumn": 68,
+ "endOffset": 23058
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 162,
+ "startColumn": 4,
+ "startOffset": 25192,
+ "endColumn": 76,
+ "endOffset": 25264
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 126,
+ "startColumn": 4,
+ "startOffset": 23293,
+ "endColumn": 76,
+ "endOffset": 23365
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 163,
+ "startColumn": 4,
+ "startOffset": 25269,
+ "endColumn": 74,
+ "endOffset": 25339
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 127,
+ "startColumn": 4,
+ "startOffset": 23370,
+ "endColumn": 74,
+ "endOffset": 23440
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 164,
+ "startColumn": 4,
+ "startOffset": 25344,
+ "endColumn": 68,
+ "endOffset": 25408
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 128,
+ "startColumn": 4,
+ "startOffset": 23445,
+ "endColumn": 68,
+ "endOffset": 23509
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 165,
+ "startColumn": 4,
+ "startOffset": 25413,
+ "endColumn": 67,
+ "endOffset": 25476
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 129,
+ "startColumn": 4,
+ "startOffset": 23514,
+ "endColumn": 67,
+ "endOffset": 23577
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 166,
+ "startColumn": 4,
+ "startOffset": 25481,
+ "endColumn": 76,
+ "endOffset": 25553
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 130,
+ "startColumn": 4,
+ "startOffset": 23582,
+ "endColumn": 76,
+ "endOffset": 23654
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 167,
+ "startColumn": 4,
+ "startOffset": 25558,
+ "endColumn": 65,
+ "endOffset": 25619
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 133,
+ "startColumn": 4,
+ "startOffset": 23880,
+ "endColumn": 65,
+ "endOffset": 23941
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 168,
+ "startColumn": 4,
+ "startOffset": 25624,
+ "endColumn": 96,
+ "endOffset": 25716
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 134,
+ "startColumn": 4,
+ "startOffset": 23946,
+ "endColumn": 96,
+ "endOffset": 24038
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 169,
+ "startColumn": 4,
+ "startOffset": 25721,
+ "endColumn": 64,
+ "endOffset": 25781
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 135,
+ "startColumn": 4,
+ "startOffset": 24043,
+ "endColumn": 64,
+ "endOffset": 24103
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 170,
+ "startColumn": 4,
+ "startOffset": 25786,
+ "endColumn": 68,
+ "endOffset": 25850
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 136,
+ "startColumn": 4,
+ "startOffset": 24108,
+ "endColumn": 68,
+ "endOffset": 24172
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 171,
+ "startColumn": 4,
+ "startOffset": 25855,
+ "endColumn": 98,
+ "endOffset": 25949
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 137,
+ "startColumn": 4,
+ "startOffset": 24177,
+ "endColumn": 98,
+ "endOffset": 24271
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 172,
+ "startColumn": 4,
+ "startOffset": 25954,
+ "endColumn": 58,
+ "endOffset": 26008
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 140,
+ "startColumn": 4,
+ "startOffset": 24497,
+ "endColumn": 58,
+ "endOffset": 24551
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 173,
+ "startColumn": 4,
+ "startOffset": 26013,
+ "endColumn": 57,
+ "endOffset": 26066
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 143,
+ "startColumn": 4,
+ "startOffset": 24777,
+ "endColumn": 57,
+ "endOffset": 24830
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 174,
+ "startColumn": 4,
+ "startOffset": 26071,
+ "endColumn": 56,
+ "endOffset": 26123
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 144,
+ "startColumn": 4,
+ "startOffset": 24835,
+ "endColumn": 56,
+ "endOffset": 24887
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 175,
+ "startColumn": 4,
+ "startOffset": 26128,
+ "endColumn": 58,
+ "endOffset": 26182
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 145,
+ "startColumn": 4,
+ "startOffset": 24892,
+ "endColumn": 58,
+ "endOffset": 24946
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 176,
+ "startColumn": 4,
+ "startOffset": 26187,
+ "endColumn": 71,
+ "endOffset": 26254
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 146,
+ "startColumn": 4,
+ "startOffset": 24951,
+ "endColumn": 71,
+ "endOffset": 25018
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 177,
+ "startColumn": 4,
+ "startOffset": 26259,
+ "endColumn": 67,
+ "endOffset": 26322
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 147,
+ "startColumn": 4,
+ "startOffset": 25023,
+ "endColumn": 67,
+ "endOffset": 25086
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 178,
+ "startColumn": 4,
+ "startOffset": 26327,
+ "endColumn": 67,
+ "endOffset": 26390
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 148,
+ "startColumn": 4,
+ "startOffset": 25091,
+ "endColumn": 67,
+ "endOffset": 25154
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 179,
+ "startColumn": 4,
+ "startOffset": 26395,
+ "endColumn": 58,
+ "endOffset": 26449
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 149,
+ "startColumn": 4,
+ "startOffset": 25159,
+ "endColumn": 58,
+ "endOffset": 25213
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 180,
+ "startColumn": 4,
+ "startOffset": 26454,
+ "endColumn": 62,
+ "endOffset": 26512
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 150,
+ "startColumn": 4,
+ "startOffset": 25218,
+ "endColumn": 62,
+ "endOffset": 25276
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 181,
+ "startColumn": 4,
+ "startOffset": 26517,
+ "endColumn": 89,
+ "endOffset": 26602
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 153,
+ "startColumn": 4,
+ "startOffset": 25511,
+ "endColumn": 89,
+ "endOffset": 25596
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 182,
+ "startColumn": 4,
+ "startOffset": 26607,
+ "endColumn": 90,
+ "endOffset": 26693
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 154,
+ "startColumn": 4,
+ "startOffset": 25601,
+ "endColumn": 90,
+ "endOffset": 25687
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 183,
+ "startColumn": 4,
+ "startOffset": 26698,
+ "endColumn": 59,
+ "endOffset": 26753
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 157,
+ "startColumn": 4,
+ "startOffset": 25913,
+ "endColumn": 59,
+ "endOffset": 25968
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 184,
+ "startColumn": 4,
+ "startOffset": 26758,
+ "endColumn": 65,
+ "endOffset": 26819
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 158,
+ "startColumn": 4,
+ "startOffset": 25973,
+ "endColumn": 65,
+ "endOffset": 26034
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 185,
+ "startColumn": 4,
+ "startOffset": 26824,
+ "endColumn": 66,
+ "endOffset": 26886
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 159,
+ "startColumn": 4,
+ "startOffset": 26039,
+ "endColumn": 66,
+ "endOffset": 26101
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 186,
+ "startColumn": 4,
+ "startOffset": 26891,
+ "endColumn": 65,
+ "endOffset": 26952
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 160,
+ "startColumn": 4,
+ "startOffset": 26106,
+ "endColumn": 65,
+ "endOffset": 26167
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 187,
+ "startColumn": 4,
+ "startOffset": 26957,
+ "endColumn": 69,
+ "endOffset": 27022
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 161,
+ "startColumn": 4,
+ "startOffset": 26172,
+ "endColumn": 69,
+ "endOffset": 26237
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 188,
+ "startColumn": 4,
+ "startOffset": 27027,
+ "endColumn": 63,
+ "endOffset": 27086
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 162,
+ "startColumn": 4,
+ "startOffset": 26242,
+ "endColumn": 63,
+ "endOffset": 26301
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 189,
+ "startColumn": 4,
+ "startOffset": 27091,
+ "endColumn": 52,
+ "endOffset": 27139
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 165,
+ "startColumn": 4,
+ "startOffset": 26536,
+ "endColumn": 52,
+ "endOffset": 26584
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 190,
+ "startColumn": 4,
+ "startOffset": 27144,
+ "endColumn": 112,
+ "endOffset": 27252
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 166,
+ "startColumn": 4,
+ "startOffset": 26589,
+ "endColumn": 112,
+ "endOffset": 26697
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 191,
+ "startColumn": 4,
+ "startOffset": 27257,
+ "endColumn": 57,
+ "endOffset": 27310
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 169,
+ "startColumn": 4,
+ "startOffset": 26923,
+ "endColumn": 57,
+ "endOffset": 26976
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 192,
+ "startColumn": 4,
+ "startOffset": 27315,
+ "endColumn": 64,
+ "endOffset": 27375
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 170,
+ "startColumn": 4,
+ "startOffset": 26981,
+ "endColumn": 64,
+ "endOffset": 27041
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 193,
+ "startColumn": 4,
+ "startOffset": 27380,
+ "endColumn": 63,
+ "endOffset": 27439
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 171,
+ "startColumn": 4,
+ "startOffset": 27046,
+ "endColumn": 63,
+ "endOffset": 27105
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 194,
+ "startColumn": 4,
+ "startOffset": 27444,
+ "endColumn": 48,
+ "endOffset": 27488
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 172,
+ "startColumn": 4,
+ "startOffset": 27110,
+ "endColumn": 48,
+ "endOffset": 27154
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 195,
+ "startColumn": 4,
+ "startOffset": 27493,
+ "endColumn": 60,
+ "endOffset": 27549
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 175,
+ "startColumn": 4,
+ "startOffset": 27389,
+ "endColumn": 60,
+ "endOffset": 27445
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 196,
+ "startColumn": 4,
+ "startOffset": 27554,
+ "endColumn": 60,
+ "endOffset": 27610
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 176,
+ "startColumn": 4,
+ "startOffset": 27450,
+ "endColumn": 60,
+ "endOffset": 27506
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 197,
+ "startColumn": 4,
+ "startOffset": 27615,
+ "endColumn": 60,
+ "endOffset": 27671
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 177,
+ "startColumn": 4,
+ "startOffset": 27511,
+ "endColumn": 60,
+ "endOffset": 27567
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 198,
+ "startColumn": 4,
+ "startOffset": 27676,
+ "endColumn": 61,
+ "endOffset": 27733
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 178,
+ "startColumn": 4,
+ "startOffset": 27572,
+ "endColumn": 61,
+ "endOffset": 27629
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 199,
+ "startColumn": 4,
+ "startOffset": 27738,
+ "endColumn": 63,
+ "endOffset": 27797
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 179,
+ "startColumn": 4,
+ "startOffset": 27634,
+ "endColumn": 63,
+ "endOffset": 27693
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 200,
+ "startColumn": 4,
+ "startOffset": 27802,
+ "endColumn": 63,
+ "endOffset": 27861
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 180,
+ "startColumn": 4,
+ "startOffset": 27698,
+ "endColumn": 63,
+ "endOffset": 27757
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 201,
+ "startColumn": 4,
+ "startOffset": 27866,
+ "endColumn": 63,
+ "endOffset": 27925
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 181,
+ "startColumn": 4,
+ "startOffset": 27762,
+ "endColumn": 63,
+ "endOffset": 27821
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 202,
+ "startColumn": 4,
+ "startOffset": 27930,
+ "endColumn": 64,
+ "endOffset": 27990
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 182,
+ "startColumn": 4,
+ "startOffset": 27826,
+ "endColumn": 64,
+ "endOffset": 27886
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 203,
+ "startColumn": 4,
+ "startOffset": 27995,
+ "endColumn": 62,
+ "endOffset": 28053
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 183,
+ "startColumn": 4,
+ "startOffset": 27891,
+ "endColumn": 62,
+ "endOffset": 27949
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 204,
+ "startColumn": 4,
+ "startOffset": 28058,
+ "endColumn": 59,
+ "endOffset": 28113
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 184,
+ "startColumn": 4,
+ "startOffset": 27954,
+ "endColumn": 59,
+ "endOffset": 28009
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 205,
+ "startColumn": 4,
+ "startOffset": 28118,
+ "endColumn": 60,
+ "endOffset": 28174
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 185,
+ "startColumn": 4,
+ "startOffset": 28014,
+ "endColumn": 60,
+ "endOffset": 28070
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 206,
+ "startColumn": 4,
+ "startOffset": 28179,
+ "endColumn": 58,
+ "endOffset": 28233
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 186,
+ "startColumn": 4,
+ "startOffset": 28075,
+ "endColumn": 58,
+ "endOffset": 28129
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 207,
+ "startColumn": 4,
+ "startOffset": 28238,
+ "endColumn": 59,
+ "endOffset": 28293
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 187,
+ "startColumn": 4,
+ "startOffset": 28134,
+ "endColumn": 59,
+ "endOffset": 28189
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 208,
+ "startColumn": 4,
+ "startOffset": 28298,
+ "endColumn": 61,
+ "endOffset": 28355
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 188,
+ "startColumn": 4,
+ "startOffset": 28194,
+ "endColumn": 61,
+ "endOffset": 28251
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 209,
+ "startColumn": 4,
+ "startOffset": 28360,
+ "endColumn": 70,
+ "endOffset": 28426
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 189,
+ "startColumn": 4,
+ "startOffset": 28256,
+ "endColumn": 70,
+ "endOffset": 28322
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 210,
+ "startColumn": 4,
+ "startOffset": 28431,
+ "endColumn": 59,
+ "endOffset": 28486
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 190,
+ "startColumn": 4,
+ "startOffset": 28327,
+ "endColumn": 59,
+ "endOffset": 28382
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 211,
+ "startColumn": 4,
+ "startOffset": 28491,
+ "endColumn": 67,
+ "endOffset": 28554
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 191,
+ "startColumn": 4,
+ "startOffset": 28387,
+ "endColumn": 67,
+ "endOffset": 28450
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 212,
+ "startColumn": 4,
+ "startOffset": 28559,
+ "endColumn": 66,
+ "endOffset": 28621
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 194,
+ "startColumn": 4,
+ "startOffset": 28676,
+ "endColumn": 66,
+ "endOffset": 28738
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 213,
+ "startColumn": 4,
+ "startOffset": 28626,
+ "endColumn": 67,
+ "endOffset": 28689
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 195,
+ "startColumn": 4,
+ "startOffset": 28743,
+ "endColumn": 67,
+ "endOffset": 28806
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 214,
+ "startColumn": 4,
+ "startOffset": 28694,
+ "endColumn": 67,
+ "endOffset": 28757
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 196,
+ "startColumn": 4,
+ "startOffset": 28811,
+ "endColumn": 67,
+ "endOffset": 28874
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 215,
+ "startColumn": 4,
+ "startOffset": 28762,
+ "endColumn": 67,
+ "endOffset": 28825
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 197,
+ "startColumn": 4,
+ "startOffset": 28879,
+ "endColumn": 67,
+ "endOffset": 28942
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 216,
+ "startColumn": 4,
+ "startOffset": 28830,
+ "endColumn": 85,
+ "endOffset": 28911
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 200,
+ "startColumn": 4,
+ "startOffset": 29177,
+ "endColumn": 85,
+ "endOffset": 29258
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 217,
+ "startColumn": 4,
+ "startOffset": 28916,
+ "endColumn": 86,
+ "endOffset": 28998
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 201,
+ "startColumn": 4,
+ "startOffset": 29263,
+ "endColumn": 86,
+ "endOffset": 29345
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 218,
+ "startColumn": 4,
+ "startOffset": 29003,
+ "endColumn": 89,
+ "endOffset": 29088
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 202,
+ "startColumn": 4,
+ "startOffset": 29350,
+ "endColumn": 89,
+ "endOffset": 29435
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 219,
+ "startColumn": 4,
+ "startOffset": 29093,
+ "endColumn": 86,
+ "endOffset": 29175
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 203,
+ "startColumn": 4,
+ "startOffset": 29440,
+ "endColumn": 86,
+ "endOffset": 29522
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 220,
+ "startColumn": 4,
+ "startOffset": 29180,
+ "endColumn": 87,
+ "endOffset": 29263
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 204,
+ "startColumn": 4,
+ "startOffset": 29527,
+ "endColumn": 87,
+ "endOffset": 29610
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 221,
+ "startColumn": 4,
+ "startOffset": 29268,
+ "endColumn": 61,
+ "endOffset": 29325
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 207,
+ "startColumn": 4,
+ "startOffset": 29836,
+ "endColumn": 61,
+ "endOffset": 29893
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 222,
+ "startColumn": 4,
+ "startOffset": 29330,
+ "endColumn": 60,
+ "endOffset": 29386
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 208,
+ "startColumn": 4,
+ "startOffset": 29898,
+ "endColumn": 60,
+ "endOffset": 29954
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 223,
+ "startColumn": 4,
+ "startOffset": 29391,
+ "endColumn": 56,
+ "endOffset": 29443
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 209,
+ "startColumn": 4,
+ "startOffset": 29959,
+ "endColumn": 56,
+ "endOffset": 30011
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 224,
+ "startColumn": 4,
+ "startOffset": 29448,
+ "endColumn": 71,
+ "endOffset": 29515
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 212,
+ "startColumn": 4,
+ "startOffset": 30237,
+ "endColumn": 71,
+ "endOffset": 30304
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 225,
+ "startColumn": 4,
+ "startOffset": 29520,
+ "endColumn": 56,
+ "endOffset": 29572
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 215,
+ "startColumn": 4,
+ "startOffset": 30527,
+ "endColumn": 56,
+ "endOffset": 30579
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 226,
+ "startColumn": 4,
+ "startOffset": 29577,
+ "endColumn": 47,
+ "endOffset": 29620
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 216,
+ "startColumn": 4,
+ "startOffset": 30584,
+ "endColumn": 47,
+ "endOffset": 30627
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 227,
+ "startColumn": 4,
+ "startOffset": 29625,
+ "endColumn": 48,
+ "endOffset": 29669
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 217,
+ "startColumn": 4,
+ "startOffset": 30632,
+ "endColumn": 48,
+ "endOffset": 30676
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 228,
+ "startColumn": 4,
+ "startOffset": 29674,
+ "endColumn": 50,
+ "endOffset": 29720
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 218,
+ "startColumn": 4,
+ "startOffset": 30681,
+ "endColumn": 50,
+ "endOffset": 30727
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 229,
+ "startColumn": 4,
+ "startOffset": 29725,
+ "endColumn": 33,
+ "endOffset": 29754
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 219,
+ "startColumn": 4,
+ "startOffset": 30732,
+ "endColumn": 33,
+ "endOffset": 30761
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 230,
+ "startColumn": 4,
+ "startOffset": 29759,
+ "endColumn": 46,
+ "endOffset": 29801
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 220,
+ "startColumn": 4,
+ "startOffset": 30766,
+ "endColumn": 46,
+ "endOffset": 30808
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 231,
+ "startColumn": 4,
+ "startOffset": 29806,
+ "endColumn": 48,
+ "endOffset": 29850
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 221,
+ "startColumn": 4,
+ "startOffset": 30813,
+ "endColumn": 48,
+ "endOffset": 30857
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 232,
+ "startColumn": 4,
+ "startOffset": 29855,
+ "endColumn": 42,
+ "endOffset": 29893
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 163,
+ "endColumn": 42,
+ "endOffset": 201
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 233,
+ "startColumn": 4,
+ "startOffset": 29898,
+ "endColumn": 45,
+ "endOffset": 29939
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 222,
+ "startColumn": 4,
+ "startOffset": 30862,
+ "endColumn": 45,
+ "endOffset": 30903
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 234,
+ "startColumn": 4,
+ "startOffset": 29944,
+ "endColumn": 31,
+ "endOffset": 29971
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 223,
+ "startColumn": 4,
+ "startOffset": 30908,
+ "endColumn": 31,
+ "endOffset": 30935
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 235,
+ "startColumn": 4,
+ "startOffset": 29976,
+ "endColumn": 47,
+ "endOffset": 30019
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 4,
+ "startColumn": 4,
+ "startOffset": 206,
+ "endColumn": 47,
+ "endOffset": 249
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 236,
+ "startColumn": 4,
+ "startOffset": 30024,
+ "endColumn": 63,
+ "endOffset": 30083
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 226,
+ "startColumn": 4,
+ "startOffset": 31161,
+ "endColumn": 63,
+ "endOffset": 31220
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 237,
+ "startColumn": 4,
+ "startOffset": 30088,
+ "endColumn": 61,
+ "endOffset": 30145
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 227,
+ "startColumn": 4,
+ "startOffset": 31225,
+ "endColumn": 61,
+ "endOffset": 31282
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 238,
+ "startColumn": 4,
+ "startOffset": 30150,
+ "endColumn": 54,
+ "endOffset": 30200
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 230,
+ "startColumn": 4,
+ "startOffset": 31508,
+ "endColumn": 54,
+ "endOffset": 31558
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 239,
+ "startColumn": 4,
+ "startOffset": 30205,
+ "endColumn": 59,
+ "endOffset": 30260
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 233,
+ "startColumn": 4,
+ "startOffset": 31784,
+ "endColumn": 59,
+ "endOffset": 31839
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 240,
+ "startColumn": 4,
+ "startOffset": 30265,
+ "endColumn": 69,
+ "endOffset": 30330
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 234,
+ "startColumn": 4,
+ "startOffset": 31844,
+ "endColumn": 69,
+ "endOffset": 31909
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 241,
+ "startColumn": 4,
+ "startOffset": 30335,
+ "endColumn": 73,
+ "endOffset": 30404
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 237,
+ "startColumn": 4,
+ "startOffset": 32136,
+ "endColumn": 73,
+ "endOffset": 32205
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 242,
+ "startColumn": 4,
+ "startOffset": 30409,
+ "endColumn": 77,
+ "endOffset": 30482
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 238,
+ "startColumn": 4,
+ "startOffset": 32210,
+ "endColumn": 77,
+ "endOffset": 32283
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 243,
+ "startColumn": 4,
+ "startOffset": 30487,
+ "endColumn": 92,
+ "endOffset": 30575
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 239,
+ "startColumn": 4,
+ "startOffset": 32288,
+ "endColumn": 92,
+ "endOffset": 32376
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 244,
+ "startColumn": 4,
+ "startOffset": 30580,
+ "endColumn": 69,
+ "endOffset": 30645
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 240,
+ "startColumn": 4,
+ "startOffset": 32381,
+ "endColumn": 69,
+ "endOffset": 32446
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 245,
+ "startColumn": 4,
+ "startOffset": 30650,
+ "endColumn": 77,
+ "endOffset": 30723
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 241,
+ "startColumn": 4,
+ "startOffset": 32451,
+ "endColumn": 77,
+ "endOffset": 32524
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 246,
+ "startColumn": 4,
+ "startOffset": 30728,
+ "endColumn": 53,
+ "endOffset": 30777
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 242,
+ "startColumn": 4,
+ "startOffset": 32529,
+ "endColumn": 53,
+ "endOffset": 32578
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 247,
+ "startColumn": 4,
+ "startOffset": 30782,
+ "endColumn": 69,
+ "endOffset": 30847
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 243,
+ "startColumn": 4,
+ "startOffset": 32583,
+ "endColumn": 69,
+ "endOffset": 32648
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 248,
+ "startColumn": 4,
+ "startOffset": 30852,
+ "endColumn": 84,
+ "endOffset": 30932
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 244,
+ "startColumn": 4,
+ "startOffset": 32653,
+ "endColumn": 84,
+ "endOffset": 32733
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 249,
+ "startColumn": 4,
+ "startOffset": 30937,
+ "endColumn": 51,
+ "endOffset": 30984
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 245,
+ "startColumn": 4,
+ "startOffset": 32738,
+ "endColumn": 51,
+ "endOffset": 32785
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 250,
+ "startColumn": 4,
+ "startOffset": 30989,
+ "endColumn": 72,
+ "endOffset": 31057
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 246,
+ "startColumn": 4,
+ "startOffset": 32790,
+ "endColumn": 72,
+ "endOffset": 32858
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 251,
+ "startColumn": 4,
+ "startOffset": 31062,
+ "endColumn": 73,
+ "endOffset": 31131
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 247,
+ "startColumn": 4,
+ "startOffset": 32863,
+ "endColumn": 73,
+ "endOffset": 32932
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 252,
+ "startColumn": 4,
+ "startOffset": 31136,
+ "endColumn": 68,
+ "endOffset": 31200
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 248,
+ "startColumn": 4,
+ "startOffset": 32937,
+ "endColumn": 68,
+ "endOffset": 33001
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 253,
+ "startColumn": 4,
+ "startOffset": 31205,
+ "endColumn": 74,
+ "endOffset": 31275
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 249,
+ "startColumn": 4,
+ "startOffset": 33006,
+ "endColumn": 74,
+ "endOffset": 33076
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 254,
+ "startColumn": 4,
+ "startOffset": 31280,
+ "endColumn": 73,
+ "endOffset": 31349
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 250,
+ "startColumn": 4,
+ "startOffset": 33081,
+ "endColumn": 73,
+ "endOffset": 33150
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 255,
+ "startColumn": 4,
+ "startOffset": 31354,
+ "endColumn": 73,
+ "endOffset": 31423
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 251,
+ "startColumn": 4,
+ "startOffset": 33155,
+ "endColumn": 73,
+ "endOffset": 33224
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 256,
+ "startColumn": 4,
+ "startOffset": 31428,
+ "endColumn": 88,
+ "endOffset": 31512
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 252,
+ "startColumn": 4,
+ "startOffset": 33229,
+ "endColumn": 88,
+ "endOffset": 33313
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 257,
+ "startColumn": 4,
+ "startOffset": 31517,
+ "endColumn": 69,
+ "endOffset": 31582
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 253,
+ "startColumn": 4,
+ "startOffset": 33318,
+ "endColumn": 69,
+ "endOffset": 33383
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 258,
+ "startColumn": 4,
+ "startOffset": 31587,
+ "endColumn": 43,
+ "endOffset": 31626
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/res/values/strings.xml",
+ "position": {
+ "startLine": 1,
+ "startColumn": 4,
+ "startOffset": 16,
+ "endColumn": 43,
+ "endOffset": 55
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 259,
+ "startColumn": 4,
+ "startOffset": 31631,
+ "endColumn": 93,
+ "endOffset": 31720
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 5,
+ "startColumn": 4,
+ "startOffset": 254,
+ "endColumn": 93,
+ "endOffset": 343
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 260,
+ "startColumn": 4,
+ "startOffset": 31725,
+ "endColumn": 102,
+ "endOffset": 31823
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 6,
+ "startColumn": 4,
+ "startOffset": 348,
+ "endColumn": 102,
+ "endOffset": 446
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 261,
+ "startColumn": 4,
+ "startOffset": 31828,
+ "endColumn": 112,
+ "endOffset": 31936
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 7,
+ "startColumn": 4,
+ "startOffset": 451,
+ "endColumn": 112,
+ "endOffset": 559
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 262,
+ "startColumn": 4,
+ "startOffset": 31941,
+ "endColumn": 161,
+ "endOffset": 32098
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 8,
+ "startColumn": 4,
+ "startOffset": 564,
+ "endColumn": 161,
+ "endOffset": 721
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 263,
+ "startColumn": 4,
+ "startOffset": 32103,
+ "endColumn": 113,
+ "endOffset": 32212
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 9,
+ "startColumn": 4,
+ "startOffset": 726,
+ "endColumn": 113,
+ "endOffset": 835
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 264,
+ "startColumn": 4,
+ "startOffset": 32217,
+ "endColumn": 106,
+ "endOffset": 32319
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 10,
+ "startColumn": 4,
+ "startOffset": 840,
+ "endColumn": 106,
+ "endOffset": 942
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 265,
+ "startColumn": 4,
+ "startOffset": 32324,
+ "endColumn": 111,
+ "endOffset": 32431
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 11,
+ "startColumn": 4,
+ "startOffset": 947,
+ "endColumn": 111,
+ "endOffset": 1054
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 266,
+ "startColumn": 4,
+ "startOffset": 32436,
+ "endColumn": 102,
+ "endOffset": 32534
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 12,
+ "startColumn": 4,
+ "startOffset": 1059,
+ "endColumn": 102,
+ "endOffset": 1157
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 267,
+ "startColumn": 4,
+ "startOffset": 32539,
+ "endColumn": 120,
+ "endOffset": 32655
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 13,
+ "startColumn": 4,
+ "startOffset": 1162,
+ "endColumn": 120,
+ "endOffset": 1278
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 268,
+ "startColumn": 4,
+ "startOffset": 32660,
+ "endColumn": 125,
+ "endOffset": 32781
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 14,
+ "startColumn": 4,
+ "startOffset": 1283,
+ "endColumn": 125,
+ "endOffset": 1404
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 269,
+ "startColumn": 4,
+ "startOffset": 32786,
+ "endColumn": 190,
+ "endOffset": 32972
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 15,
+ "startColumn": 4,
+ "startOffset": 1409,
+ "endColumn": 190,
+ "endOffset": 1595
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 270,
+ "startColumn": 4,
+ "startOffset": 32977,
+ "endColumn": 107,
+ "endOffset": 33080
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 16,
+ "startColumn": 4,
+ "startOffset": 1600,
+ "endColumn": 107,
+ "endOffset": 1703
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 271,
+ "startColumn": 4,
+ "startOffset": 33085,
+ "endColumn": 112,
+ "endOffset": 33193
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 17,
+ "startColumn": 4,
+ "startOffset": 1708,
+ "endColumn": 112,
+ "endOffset": 1816
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 272,
+ "startColumn": 4,
+ "startOffset": 33198,
+ "endColumn": 112,
+ "endOffset": 33306
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 18,
+ "startColumn": 4,
+ "startOffset": 1821,
+ "endColumn": 112,
+ "endOffset": 1929
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 273,
+ "startColumn": 4,
+ "startOffset": 33311,
+ "endColumn": 107,
+ "endOffset": 33414
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 19,
+ "startColumn": 4,
+ "startOffset": 1934,
+ "endColumn": 107,
+ "endOffset": 2037
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 274,
+ "startColumn": 4,
+ "startOffset": 33419,
+ "endColumn": 111,
+ "endOffset": 33526
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 20,
+ "startColumn": 4,
+ "startOffset": 2042,
+ "endColumn": 111,
+ "endOffset": 2149
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 275,
+ "startColumn": 4,
+ "startOffset": 33531,
+ "endColumn": 128,
+ "endOffset": 33655
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 21,
+ "startColumn": 4,
+ "startOffset": 2154,
+ "endColumn": 128,
+ "endOffset": 2278
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 276,
+ "startColumn": 4,
+ "startOffset": 33660,
+ "endColumn": 110,
+ "endOffset": 33766
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 22,
+ "startColumn": 4,
+ "startOffset": 2283,
+ "endColumn": 110,
+ "endOffset": 2389
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 277,
+ "startColumn": 4,
+ "startOffset": 33771,
+ "endColumn": 92,
+ "endOffset": 33859
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 23,
+ "startColumn": 4,
+ "startOffset": 2394,
+ "endColumn": 92,
+ "endOffset": 2482
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 278,
+ "startColumn": 4,
+ "startOffset": 33864,
+ "endColumn": 131,
+ "endOffset": 33991
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 24,
+ "startColumn": 4,
+ "startOffset": 2487,
+ "endColumn": 131,
+ "endOffset": 2614
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 279,
+ "startColumn": 4,
+ "startOffset": 33996,
+ "endColumn": 124,
+ "endOffset": 34116
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 25,
+ "startColumn": 4,
+ "startOffset": 2619,
+ "endColumn": 124,
+ "endOffset": 2739
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 280,
+ "startColumn": 4,
+ "startOffset": 34121,
+ "endColumn": 97,
+ "endOffset": 34214
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 26,
+ "startColumn": 4,
+ "startOffset": 2744,
+ "endColumn": 97,
+ "endOffset": 2837
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 281,
+ "startColumn": 4,
+ "startOffset": 34219,
+ "endColumn": 98,
+ "endOffset": 34313
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 27,
+ "startColumn": 4,
+ "startOffset": 2842,
+ "endColumn": 98,
+ "endOffset": 2936
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 282,
+ "startColumn": 4,
+ "startOffset": 34318,
+ "endColumn": 113,
+ "endOffset": 34427
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 28,
+ "startColumn": 4,
+ "startOffset": 2941,
+ "endColumn": 113,
+ "endOffset": 3050
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 283,
+ "startColumn": 4,
+ "startOffset": 34432,
+ "endColumn": 70,
+ "endOffset": 34498
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 254,
+ "startColumn": 4,
+ "startOffset": 33388,
+ "endColumn": 70,
+ "endOffset": 33454
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 284,
+ "startColumn": 4,
+ "startOffset": 34503,
+ "endColumn": 77,
+ "endOffset": 34576
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 257,
+ "startColumn": 4,
+ "startOffset": 33680,
+ "endColumn": 77,
+ "endOffset": 33753
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 285,
+ "startColumn": 4,
+ "startOffset": 34581,
+ "endColumn": 89,
+ "endOffset": 34666
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 258,
+ "startColumn": 4,
+ "startOffset": 33758,
+ "endColumn": 89,
+ "endOffset": 33843
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 286,
+ "startColumn": 4,
+ "startOffset": 34671,
+ "endColumn": 87,
+ "endOffset": 34754
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 259,
+ "startColumn": 4,
+ "startOffset": 33848,
+ "endColumn": 87,
+ "endOffset": 33931
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 287,
+ "startColumn": 4,
+ "startOffset": 34759,
+ "endColumn": 95,
+ "endOffset": 34850
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 260,
+ "startColumn": 4,
+ "startOffset": 33936,
+ "endColumn": 95,
+ "endOffset": 34027
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 288,
+ "startColumn": 4,
+ "startOffset": 34855,
+ "endLine": 291,
+ "endColumn": 10,
+ "endOffset": 35098
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 29,
+ "startColumn": 4,
+ "startOffset": 3055,
+ "endLine": 32,
+ "endColumn": 10,
+ "endOffset": 3298
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 292,
+ "startColumn": 4,
+ "startOffset": 35103,
+ "endLine": 294,
+ "endColumn": 12,
+ "endOffset": 35226
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/res/values/styles.xml",
+ "position": {
+ "startLine": 3,
+ "startColumn": 4,
+ "startOffset": 54,
+ "endLine": 5,
+ "endColumn": 12,
+ "endOffset": 177
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 295,
+ "startColumn": 4,
+ "startOffset": 35231,
+ "endLine": 301,
+ "endColumn": 12,
+ "endOffset": 35727
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 263,
+ "startColumn": 4,
+ "startOffset": 34258,
+ "endLine": 269,
+ "endColumn": 12,
+ "endOffset": 34754
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 302,
+ "startColumn": 4,
+ "startOffset": 35732,
+ "endColumn": 88,
+ "endOffset": 35816
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 270,
+ "startColumn": 4,
+ "startOffset": 34759,
+ "endColumn": 88,
+ "endOffset": 34843
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 303,
+ "startColumn": 4,
+ "startOffset": 35821,
+ "endLine": 306,
+ "endColumn": 12,
+ "endOffset": 36063
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 271,
+ "startColumn": 4,
+ "startOffset": 34848,
+ "endLine": 274,
+ "endColumn": 12,
+ "endOffset": 35090
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 307,
+ "startColumn": 4,
+ "startOffset": 36068,
+ "endLine": 310,
+ "endColumn": 12,
+ "endOffset": 36344
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 275,
+ "startColumn": 4,
+ "startOffset": 35095,
+ "endLine": 278,
+ "endColumn": 12,
+ "endOffset": 35371
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 311,
+ "startColumn": 4,
+ "startOffset": 36349,
+ "endLine": 315,
+ "endColumn": 12,
+ "endOffset": 36629
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 279,
+ "startColumn": 4,
+ "startOffset": 35376,
+ "endLine": 283,
+ "endColumn": 12,
+ "endOffset": 35656
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 316,
+ "startColumn": 4,
+ "startOffset": 36634,
+ "endLine": 321,
+ "endColumn": 12,
+ "endOffset": 37022
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 284,
+ "startColumn": 4,
+ "startOffset": 35661,
+ "endLine": 289,
+ "endColumn": 12,
+ "endOffset": 36049
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 322,
+ "startColumn": 4,
+ "startOffset": 37027,
+ "endLine": 328,
+ "endColumn": 12,
+ "endOffset": 37499
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 292,
+ "startColumn": 4,
+ "startOffset": 36285,
+ "endLine": 298,
+ "endColumn": 12,
+ "endOffset": 36757
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 329,
+ "startColumn": 4,
+ "startOffset": 37504,
+ "endLine": 332,
+ "endColumn": 12,
+ "endOffset": 37721
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 299,
+ "startColumn": 4,
+ "startOffset": 36762,
+ "endLine": 302,
+ "endColumn": 12,
+ "endOffset": 36979
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 333,
+ "startColumn": 4,
+ "startOffset": 37726,
+ "endLine": 336,
+ "endColumn": 12,
+ "endOffset": 37943
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 303,
+ "startColumn": 4,
+ "startOffset": 36984,
+ "endLine": 306,
+ "endColumn": 12,
+ "endOffset": 37201
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 337,
+ "startColumn": 4,
+ "startOffset": 37948,
+ "endLine": 341,
+ "endColumn": 12,
+ "endOffset": 38211
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 307,
+ "startColumn": 4,
+ "startOffset": 37206,
+ "endLine": 311,
+ "endColumn": 12,
+ "endOffset": 37469
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 342,
+ "startColumn": 4,
+ "startOffset": 38216,
+ "endLine": 345,
+ "endColumn": 12,
+ "endOffset": 38438
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 312,
+ "startColumn": 4,
+ "startOffset": 37474,
+ "endLine": 315,
+ "endColumn": 12,
+ "endOffset": 37696
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 346,
+ "startColumn": 4,
+ "startOffset": 38443,
+ "endLine": 349,
+ "endColumn": 12,
+ "endOffset": 38668
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 316,
+ "startColumn": 4,
+ "startOffset": 37701,
+ "endLine": 319,
+ "endColumn": 12,
+ "endOffset": 37926
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 350,
+ "startColumn": 4,
+ "startOffset": 38673,
+ "endLine": 353,
+ "endColumn": 12,
+ "endOffset": 38898
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 320,
+ "startColumn": 4,
+ "startOffset": 37931,
+ "endLine": 323,
+ "endColumn": 12,
+ "endOffset": 38156
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 354,
+ "startColumn": 4,
+ "startOffset": 38903,
+ "endLine": 357,
+ "endColumn": 12,
+ "endOffset": 39128
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 324,
+ "startColumn": 4,
+ "startOffset": 38161,
+ "endLine": 327,
+ "endColumn": 12,
+ "endOffset": 38386
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 358,
+ "startColumn": 4,
+ "startOffset": 39133,
+ "endLine": 361,
+ "endColumn": 12,
+ "endOffset": 39358
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 328,
+ "startColumn": 4,
+ "startOffset": 38391,
+ "endLine": 331,
+ "endColumn": 12,
+ "endOffset": 38616
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 362,
+ "startColumn": 4,
+ "startOffset": 39363,
+ "endLine": 365,
+ "endColumn": 12,
+ "endOffset": 39585
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 332,
+ "startColumn": 4,
+ "startOffset": 38621,
+ "endLine": 335,
+ "endColumn": 12,
+ "endOffset": 38843
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 366,
+ "startColumn": 4,
+ "startOffset": 39590,
+ "endLine": 369,
+ "endColumn": 12,
+ "endOffset": 39824
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 336,
+ "startColumn": 4,
+ "startOffset": 38848,
+ "endLine": 339,
+ "endColumn": 12,
+ "endOffset": 39082
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 370,
+ "startColumn": 4,
+ "startOffset": 39829,
+ "endLine": 373,
+ "endColumn": 12,
+ "endOffset": 40050
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 340,
+ "startColumn": 4,
+ "startOffset": 39087,
+ "endLine": 343,
+ "endColumn": 12,
+ "endOffset": 39308
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 374,
+ "startColumn": 4,
+ "startOffset": 40055,
+ "endLine": 377,
+ "endColumn": 12,
+ "endOffset": 40295
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 344,
+ "startColumn": 4,
+ "startOffset": 39313,
+ "endLine": 347,
+ "endColumn": 12,
+ "endOffset": 39553
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 378,
+ "startColumn": 4,
+ "startOffset": 40300,
+ "endLine": 379,
+ "endColumn": 12,
+ "endOffset": 40425
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 350,
+ "startColumn": 4,
+ "startOffset": 39784,
+ "endLine": 351,
+ "endColumn": 12,
+ "endOffset": 39909
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 380,
+ "startColumn": 4,
+ "startOffset": 40430,
+ "endLine": 381,
+ "endColumn": 12,
+ "endOffset": 40555
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 352,
+ "startColumn": 4,
+ "startOffset": 39914,
+ "endLine": 353,
+ "endColumn": 12,
+ "endOffset": 40039
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 382,
+ "startColumn": 4,
+ "startOffset": 40560,
+ "endLine": 385,
+ "endColumn": 12,
+ "endOffset": 40785
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 356,
+ "startColumn": 4,
+ "startOffset": 40275,
+ "endLine": 359,
+ "endColumn": 12,
+ "endOffset": 40500
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 386,
+ "startColumn": 4,
+ "startOffset": 40790,
+ "endLine": 389,
+ "endColumn": 12,
+ "endOffset": 41033
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 360,
+ "startColumn": 4,
+ "startOffset": 40505,
+ "endLine": 363,
+ "endColumn": 12,
+ "endOffset": 40748
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 390,
+ "startColumn": 4,
+ "startOffset": 41038,
+ "endLine": 393,
+ "endColumn": 12,
+ "endOffset": 41252
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 364,
+ "startColumn": 4,
+ "startOffset": 40753,
+ "endLine": 367,
+ "endColumn": 12,
+ "endOffset": 40967
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 394,
+ "startColumn": 4,
+ "startOffset": 41257,
+ "endLine": 398,
+ "endColumn": 12,
+ "endOffset": 41535
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 370,
+ "startColumn": 4,
+ "startOffset": 41198,
+ "endLine": 374,
+ "endColumn": 12,
+ "endOffset": 41476
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 399,
+ "startColumn": 4,
+ "startOffset": 41540,
+ "endLine": 402,
+ "endColumn": 12,
+ "endOffset": 41743
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 375,
+ "startColumn": 4,
+ "startOffset": 41481,
+ "endLine": 378,
+ "endColumn": 12,
+ "endOffset": 41684
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 403,
+ "startColumn": 4,
+ "startOffset": 41748,
+ "endLine": 405,
+ "endColumn": 12,
+ "endOffset": 41874
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 379,
+ "startColumn": 4,
+ "startOffset": 41689,
+ "endLine": 381,
+ "endColumn": 12,
+ "endOffset": 41815
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 406,
+ "startColumn": 4,
+ "startOffset": 41879,
+ "endLine": 409,
+ "endColumn": 12,
+ "endOffset": 42101
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 384,
+ "startColumn": 4,
+ "startOffset": 42051,
+ "endLine": 387,
+ "endColumn": 12,
+ "endOffset": 42273
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 410,
+ "startColumn": 4,
+ "startOffset": 42106,
+ "endLine": 413,
+ "endColumn": 12,
+ "endOffset": 42347
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 388,
+ "startColumn": 4,
+ "startOffset": 42278,
+ "endLine": 391,
+ "endColumn": 12,
+ "endOffset": 42519
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 414,
+ "startColumn": 4,
+ "startOffset": 42352,
+ "endLine": 417,
+ "endColumn": 12,
+ "endOffset": 42572
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 392,
+ "startColumn": 4,
+ "startOffset": 42524,
+ "endLine": 395,
+ "endColumn": 12,
+ "endOffset": 42744
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 418,
+ "startColumn": 4,
+ "startOffset": 42577,
+ "endLine": 421,
+ "endColumn": 12,
+ "endOffset": 42819
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 396,
+ "startColumn": 4,
+ "startOffset": 42749,
+ "endLine": 399,
+ "endColumn": 12,
+ "endOffset": 42991
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 422,
+ "startColumn": 4,
+ "startOffset": 42824,
+ "endLine": 425,
+ "endColumn": 12,
+ "endOffset": 43040
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 400,
+ "startColumn": 4,
+ "startOffset": 42996,
+ "endLine": 403,
+ "endColumn": 12,
+ "endOffset": 43212
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 426,
+ "startColumn": 4,
+ "startOffset": 43045,
+ "endLine": 429,
+ "endColumn": 12,
+ "endOffset": 43285
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 404,
+ "startColumn": 4,
+ "startOffset": 43217,
+ "endLine": 407,
+ "endColumn": 12,
+ "endOffset": 43457
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 430,
+ "startColumn": 4,
+ "startOffset": 43290,
+ "endLine": 433,
+ "endColumn": 12,
+ "endOffset": 43559
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 410,
+ "startColumn": 4,
+ "startOffset": 43688,
+ "endLine": 413,
+ "endColumn": 12,
+ "endOffset": 43957
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 434,
+ "startColumn": 4,
+ "startOffset": 43564,
+ "endLine": 437,
+ "endColumn": 12,
+ "endOffset": 43860
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 414,
+ "startColumn": 4,
+ "startOffset": 43962,
+ "endLine": 417,
+ "endColumn": 12,
+ "endOffset": 44258
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 438,
+ "startColumn": 4,
+ "startOffset": 43865,
+ "endLine": 441,
+ "endColumn": 12,
+ "endOffset": 44184
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 418,
+ "startColumn": 4,
+ "startOffset": 44263,
+ "endLine": 421,
+ "endColumn": 12,
+ "endOffset": 44582
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 442,
+ "startColumn": 4,
+ "startOffset": 44189,
+ "endLine": 445,
+ "endColumn": 12,
+ "endOffset": 44475
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 422,
+ "startColumn": 4,
+ "startOffset": 44587,
+ "endLine": 425,
+ "endColumn": 12,
+ "endOffset": 44873
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 446,
+ "startColumn": 4,
+ "startOffset": 44480,
+ "endLine": 449,
+ "endColumn": 12,
+ "endOffset": 44789
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 426,
+ "startColumn": 4,
+ "startOffset": 44878,
+ "endLine": 429,
+ "endColumn": 12,
+ "endOffset": 45187
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 450,
+ "startColumn": 4,
+ "startOffset": 44794,
+ "endColumn": 136,
+ "endOffset": 44926
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 430,
+ "startColumn": 4,
+ "startOffset": 45192,
+ "endColumn": 136,
+ "endOffset": 45324
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 451,
+ "startColumn": 4,
+ "startOffset": 44931,
+ "endColumn": 130,
+ "endOffset": 45057
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 431,
+ "startColumn": 4,
+ "startOffset": 45329,
+ "endColumn": 130,
+ "endOffset": 45455
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 452,
+ "startColumn": 4,
+ "startOffset": 45062,
+ "endColumn": 104,
+ "endOffset": 45162
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 434,
+ "startColumn": 4,
+ "startOffset": 45691,
+ "endColumn": 104,
+ "endOffset": 45791
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 453,
+ "startColumn": 4,
+ "startOffset": 45167,
+ "endLine": 455,
+ "endColumn": 12,
+ "endOffset": 45366
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 435,
+ "startColumn": 4,
+ "startOffset": 45796,
+ "endLine": 437,
+ "endColumn": 12,
+ "endOffset": 45995
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 456,
+ "startColumn": 4,
+ "startOffset": 45371,
+ "endLine": 458,
+ "endColumn": 12,
+ "endOffset": 45574
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 440,
+ "startColumn": 4,
+ "startOffset": 46226,
+ "endLine": 442,
+ "endColumn": 12,
+ "endOffset": 46429
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 459,
+ "startColumn": 4,
+ "startOffset": 45579,
+ "endLine": 460,
+ "endColumn": 12,
+ "endOffset": 45698
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 443,
+ "startColumn": 4,
+ "startOffset": 46434,
+ "endLine": 444,
+ "endColumn": 12,
+ "endOffset": 46553
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 461,
+ "startColumn": 4,
+ "startOffset": 45703,
+ "endLine": 462,
+ "endColumn": 12,
+ "endOffset": 45822
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 445,
+ "startColumn": 4,
+ "startOffset": 46558,
+ "endLine": 446,
+ "endColumn": 12,
+ "endOffset": 46677
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 463,
+ "startColumn": 4,
+ "startOffset": 45827,
+ "endColumn": 104,
+ "endOffset": 45927
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 447,
+ "startColumn": 4,
+ "startOffset": 46682,
+ "endColumn": 104,
+ "endOffset": 46782
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 464,
+ "startColumn": 4,
+ "startOffset": 45932,
+ "endColumn": 116,
+ "endOffset": 46044
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 448,
+ "startColumn": 4,
+ "startOffset": 46787,
+ "endColumn": 116,
+ "endOffset": 46899
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 465,
+ "startColumn": 4,
+ "startOffset": 46049,
+ "endLine": 467,
+ "endColumn": 12,
+ "endOffset": 46258
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 449,
+ "startColumn": 4,
+ "startOffset": 46904,
+ "endLine": 451,
+ "endColumn": 12,
+ "endOffset": 47113
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 468,
+ "startColumn": 4,
+ "startOffset": 46263,
+ "endLine": 469,
+ "endColumn": 12,
+ "endOffset": 46404
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 452,
+ "startColumn": 4,
+ "startOffset": 47118,
+ "endLine": 453,
+ "endColumn": 12,
+ "endOffset": 47259
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 470,
+ "startColumn": 4,
+ "startOffset": 46409,
+ "endLine": 471,
+ "endColumn": 12,
+ "endOffset": 46544
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 454,
+ "startColumn": 4,
+ "startOffset": 47264,
+ "endLine": 455,
+ "endColumn": 12,
+ "endOffset": 47399
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 472,
+ "startColumn": 4,
+ "startOffset": 46549,
+ "endLine": 473,
+ "endColumn": 12,
+ "endOffset": 46630
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 458,
+ "startColumn": 4,
+ "startOffset": 47630,
+ "endLine": 459,
+ "endColumn": 12,
+ "endOffset": 47711
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 474,
+ "startColumn": 4,
+ "startOffset": 46635,
+ "endLine": 478,
+ "endColumn": 12,
+ "endOffset": 46978
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 460,
+ "startColumn": 4,
+ "startOffset": 47716,
+ "endLine": 464,
+ "endColumn": 12,
+ "endOffset": 48059
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 479,
+ "startColumn": 4,
+ "startOffset": 46983,
+ "endColumn": 87,
+ "endOffset": 47066
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 465,
+ "startColumn": 4,
+ "startOffset": 48064,
+ "endColumn": 87,
+ "endOffset": 48147
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 480,
+ "startColumn": 4,
+ "startOffset": 47071,
+ "endLine": 483,
+ "endColumn": 12,
+ "endOffset": 47296
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 466,
+ "startColumn": 4,
+ "startOffset": 48152,
+ "endLine": 469,
+ "endColumn": 12,
+ "endOffset": 48377
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 484,
+ "startColumn": 4,
+ "startOffset": 47301,
+ "endLine": 489,
+ "endColumn": 12,
+ "endOffset": 47698
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 470,
+ "startColumn": 4,
+ "startOffset": 48382,
+ "endLine": 475,
+ "endColumn": 12,
+ "endOffset": 48779
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 490,
+ "startColumn": 4,
+ "startOffset": 47703,
+ "endLine": 493,
+ "endColumn": 12,
+ "endOffset": 47931
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 476,
+ "startColumn": 4,
+ "startOffset": 48784,
+ "endLine": 479,
+ "endColumn": 12,
+ "endOffset": 49012
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 494,
+ "startColumn": 4,
+ "startOffset": 47936,
+ "endColumn": 81,
+ "endOffset": 48013
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 480,
+ "startColumn": 4,
+ "startOffset": 49017,
+ "endColumn": 81,
+ "endOffset": 49094
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 495,
+ "startColumn": 4,
+ "startOffset": 48018,
+ "endLine": 496,
+ "endColumn": 12,
+ "endOffset": 48111
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 481,
+ "startColumn": 4,
+ "startOffset": 49099,
+ "endLine": 482,
+ "endColumn": 12,
+ "endOffset": 49192
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 497,
+ "startColumn": 4,
+ "startOffset": 48116,
+ "endLine": 507,
+ "endColumn": 12,
+ "endOffset": 48728
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 483,
+ "startColumn": 4,
+ "startOffset": 49197,
+ "endLine": 493,
+ "endColumn": 12,
+ "endOffset": 49809
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 508,
+ "startColumn": 4,
+ "startOffset": 48733,
+ "endColumn": 99,
+ "endOffset": 48828
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 494,
+ "startColumn": 4,
+ "startOffset": 49814,
+ "endColumn": 99,
+ "endOffset": 49909
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 509,
+ "startColumn": 4,
+ "startOffset": 48833,
+ "endLine": 512,
+ "endColumn": 12,
+ "endOffset": 49064
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 495,
+ "startColumn": 4,
+ "startOffset": 49914,
+ "endLine": 498,
+ "endColumn": 12,
+ "endOffset": 50145
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 513,
+ "startColumn": 4,
+ "startOffset": 49069,
+ "endLine": 518,
+ "endColumn": 12,
+ "endOffset": 49472
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 499,
+ "startColumn": 4,
+ "startOffset": 50150,
+ "endLine": 504,
+ "endColumn": 12,
+ "endOffset": 50553
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 519,
+ "startColumn": 4,
+ "startOffset": 49477,
+ "endLine": 522,
+ "endColumn": 12,
+ "endOffset": 49711
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 505,
+ "startColumn": 4,
+ "startOffset": 50558,
+ "endLine": 508,
+ "endColumn": 12,
+ "endOffset": 50792
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 523,
+ "startColumn": 4,
+ "startOffset": 49716,
+ "endColumn": 93,
+ "endOffset": 49805
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 509,
+ "startColumn": 4,
+ "startOffset": 50797,
+ "endColumn": 93,
+ "endOffset": 50886
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 524,
+ "startColumn": 4,
+ "startOffset": 49810,
+ "endColumn": 88,
+ "endOffset": 49894
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 510,
+ "startColumn": 4,
+ "startOffset": 50891,
+ "endColumn": 88,
+ "endOffset": 50975
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 525,
+ "startColumn": 4,
+ "startOffset": 49899,
+ "endLine": 528,
+ "endColumn": 12,
+ "endOffset": 50131
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 511,
+ "startColumn": 4,
+ "startOffset": 50980,
+ "endLine": 514,
+ "endColumn": 12,
+ "endOffset": 51212
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 529,
+ "startColumn": 4,
+ "startOffset": 50136,
+ "endLine": 554,
+ "endColumn": 12,
+ "endOffset": 52082
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 515,
+ "startColumn": 4,
+ "startOffset": 51217,
+ "endLine": 540,
+ "endColumn": 12,
+ "endOffset": 53163
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 555,
+ "startColumn": 4,
+ "startOffset": 52087,
+ "endLine": 558,
+ "endColumn": 12,
+ "endOffset": 52324
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 541,
+ "startColumn": 4,
+ "startOffset": 53168,
+ "endLine": 544,
+ "endColumn": 12,
+ "endOffset": 53405
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 559,
+ "startColumn": 4,
+ "startOffset": 52329,
+ "endLine": 585,
+ "endColumn": 12,
+ "endOffset": 54406
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 545,
+ "startColumn": 4,
+ "startOffset": 53410,
+ "endLine": 571,
+ "endColumn": 12,
+ "endOffset": 55487
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 586,
+ "startColumn": 4,
+ "startOffset": 54411,
+ "endLine": 733,
+ "endColumn": 12,
+ "endOffset": 63833
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 572,
+ "startColumn": 4,
+ "startOffset": 55492,
+ "endLine": 719,
+ "endColumn": 12,
+ "endOffset": 64914
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 734,
+ "startColumn": 4,
+ "startOffset": 63838,
+ "endLine": 755,
+ "endColumn": 12,
+ "endOffset": 65100
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 720,
+ "startColumn": 4,
+ "startOffset": 64919,
+ "endLine": 741,
+ "endColumn": 12,
+ "endOffset": 66181
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 756,
+ "startColumn": 4,
+ "startOffset": 65105,
+ "endLine": 903,
+ "endColumn": 12,
+ "endOffset": 74637
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 742,
+ "startColumn": 4,
+ "startOffset": 66186,
+ "endLine": 889,
+ "endColumn": 12,
+ "endOffset": 75718
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 904,
+ "startColumn": 4,
+ "startOffset": 74642,
+ "endLine": 925,
+ "endColumn": 12,
+ "endOffset": 75918
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 890,
+ "startColumn": 4,
+ "startOffset": 75723,
+ "endLine": 911,
+ "endColumn": 12,
+ "endOffset": 76999
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 926,
+ "startColumn": 4,
+ "startOffset": 75923,
+ "endLine": 932,
+ "endColumn": 12,
+ "endOffset": 76454
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 914,
+ "startColumn": 4,
+ "startOffset": 77230,
+ "endLine": 920,
+ "endColumn": 12,
+ "endOffset": 77761
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 933,
+ "startColumn": 4,
+ "startOffset": 76459,
+ "endLine": 937,
+ "endColumn": 12,
+ "endOffset": 76784
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 921,
+ "startColumn": 4,
+ "startOffset": 77766,
+ "endLine": 925,
+ "endColumn": 12,
+ "endOffset": 78091
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 938,
+ "startColumn": 4,
+ "startOffset": 76789,
+ "endLine": 958,
+ "endColumn": 12,
+ "endOffset": 77907
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 926,
+ "startColumn": 4,
+ "startOffset": 78096,
+ "endLine": 946,
+ "endColumn": 12,
+ "endOffset": 79214
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 959,
+ "startColumn": 4,
+ "startOffset": 77912,
+ "endLine": 963,
+ "endColumn": 12,
+ "endOffset": 78163
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 947,
+ "startColumn": 4,
+ "startOffset": 79219,
+ "endLine": 951,
+ "endColumn": 12,
+ "endOffset": 79470
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 964,
+ "startColumn": 4,
+ "startOffset": 78168,
+ "endLine": 968,
+ "endColumn": 12,
+ "endOffset": 78399
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 952,
+ "startColumn": 4,
+ "startOffset": 79475,
+ "endLine": 956,
+ "endColumn": 12,
+ "endOffset": 79706
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 969,
+ "startColumn": 4,
+ "startOffset": 78404,
+ "endLine": 978,
+ "endColumn": 12,
+ "endOffset": 78946
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 957,
+ "startColumn": 4,
+ "startOffset": 79711,
+ "endLine": 966,
+ "endColumn": 12,
+ "endOffset": 80253
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 979,
+ "startColumn": 4,
+ "startOffset": 78951,
+ "endLine": 987,
+ "endColumn": 12,
+ "endOffset": 79440
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 967,
+ "startColumn": 4,
+ "startOffset": 80258,
+ "endLine": 975,
+ "endColumn": 12,
+ "endOffset": 80747
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 988,
+ "startColumn": 4,
+ "startOffset": 79445,
+ "endLine": 998,
+ "endColumn": 12,
+ "endOffset": 80113
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 976,
+ "startColumn": 4,
+ "startOffset": 80752,
+ "endLine": 986,
+ "endColumn": 12,
+ "endOffset": 81420
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 999,
+ "startColumn": 4,
+ "startOffset": 80118,
+ "endLine": 1001,
+ "endColumn": 12,
+ "endOffset": 80261
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 987,
+ "startColumn": 4,
+ "startOffset": 81425,
+ "endLine": 989,
+ "endColumn": 12,
+ "endOffset": 81568
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1002,
+ "startColumn": 4,
+ "startOffset": 80266,
+ "endLine": 1008,
+ "endColumn": 12,
+ "endOffset": 80789
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 990,
+ "startColumn": 4,
+ "startOffset": 81573,
+ "endLine": 996,
+ "endColumn": 12,
+ "endOffset": 82096
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1009,
+ "startColumn": 4,
+ "startOffset": 80794,
+ "endLine": 1016,
+ "endColumn": 12,
+ "endOffset": 81353
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 997,
+ "startColumn": 4,
+ "startOffset": 82101,
+ "endLine": 1004,
+ "endColumn": 12,
+ "endOffset": 82660
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1017,
+ "startColumn": 4,
+ "startOffset": 81358,
+ "endLine": 1023,
+ "endColumn": 12,
+ "endOffset": 81728
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1005,
+ "startColumn": 4,
+ "startOffset": 82665,
+ "endLine": 1011,
+ "endColumn": 12,
+ "endOffset": 83035
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1024,
+ "startColumn": 4,
+ "startOffset": 81733,
+ "endColumn": 117,
+ "endOffset": 81846
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1012,
+ "startColumn": 4,
+ "startOffset": 83040,
+ "endColumn": 117,
+ "endOffset": 83153
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1025,
+ "startColumn": 4,
+ "startOffset": 81851,
+ "endLine": 1033,
+ "endColumn": 12,
+ "endOffset": 82384
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1013,
+ "startColumn": 4,
+ "startOffset": 83158,
+ "endLine": 1021,
+ "endColumn": 12,
+ "endOffset": 83691
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1034,
+ "startColumn": 4,
+ "startOffset": 82389,
+ "endLine": 1036,
+ "endColumn": 12,
+ "endOffset": 82541
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1022,
+ "startColumn": 4,
+ "startOffset": 83696,
+ "endLine": 1024,
+ "endColumn": 12,
+ "endOffset": 83848
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1037,
+ "startColumn": 4,
+ "startOffset": 82546,
+ "endLine": 1039,
+ "endColumn": 12,
+ "endOffset": 82685
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1025,
+ "startColumn": 4,
+ "startOffset": 83853,
+ "endLine": 1027,
+ "endColumn": 12,
+ "endOffset": 83992
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1040,
+ "startColumn": 4,
+ "startOffset": 82690,
+ "endLine": 1044,
+ "endColumn": 12,
+ "endOffset": 83005
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1028,
+ "startColumn": 4,
+ "startOffset": 83997,
+ "endLine": 1032,
+ "endColumn": 12,
+ "endOffset": 84312
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1045,
+ "startColumn": 4,
+ "startOffset": 83010,
+ "endLine": 1048,
+ "endColumn": 12,
+ "endOffset": 83261
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1033,
+ "startColumn": 4,
+ "startOffset": 84317,
+ "endLine": 1036,
+ "endColumn": 12,
+ "endOffset": 84568
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1049,
+ "startColumn": 4,
+ "startOffset": 83266,
+ "endLine": 1052,
+ "endColumn": 12,
+ "endOffset": 83431
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1037,
+ "startColumn": 4,
+ "startOffset": 84573,
+ "endLine": 1040,
+ "endColumn": 12,
+ "endOffset": 84738
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1053,
+ "startColumn": 4,
+ "startOffset": 83436,
+ "endLine": 1055,
+ "endColumn": 12,
+ "endOffset": 83572
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1041,
+ "startColumn": 4,
+ "startOffset": 84743,
+ "endLine": 1043,
+ "endColumn": 12,
+ "endOffset": 84879
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1056,
+ "startColumn": 4,
+ "startOffset": 83577,
+ "endColumn": 63,
+ "endOffset": 83636
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1044,
+ "startColumn": 4,
+ "startOffset": 84884,
+ "endColumn": 63,
+ "endOffset": 84943
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1057,
+ "startColumn": 4,
+ "startOffset": 83641,
+ "endLine": 1060,
+ "endColumn": 12,
+ "endOffset": 83918
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1045,
+ "startColumn": 4,
+ "startOffset": 84948,
+ "endLine": 1048,
+ "endColumn": 12,
+ "endOffset": 85225
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1061,
+ "startColumn": 4,
+ "startOffset": 83923,
+ "endLine": 1064,
+ "endColumn": 12,
+ "endOffset": 84204
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1049,
+ "startColumn": 4,
+ "startOffset": 85230,
+ "endLine": 1052,
+ "endColumn": 12,
+ "endOffset": 85511
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1065,
+ "startColumn": 4,
+ "startOffset": 84209,
+ "endLine": 1072,
+ "endColumn": 12,
+ "endOffset": 84746
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1053,
+ "startColumn": 4,
+ "startOffset": 85516,
+ "endLine": 1060,
+ "endColumn": 12,
+ "endOffset": 86053
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1073,
+ "startColumn": 4,
+ "startOffset": 84751,
+ "endLine": 1077,
+ "endColumn": 12,
+ "endOffset": 85010
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1061,
+ "startColumn": 4,
+ "startOffset": 86058,
+ "endLine": 1065,
+ "endColumn": 12,
+ "endOffset": 86317
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1078,
+ "startColumn": 4,
+ "startOffset": 85015,
+ "endLine": 1084,
+ "endColumn": 12,
+ "endOffset": 85348
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1066,
+ "startColumn": 4,
+ "startOffset": 86322,
+ "endLine": 1072,
+ "endColumn": 12,
+ "endOffset": 86655
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1085,
+ "startColumn": 4,
+ "startOffset": 85353,
+ "endLine": 1090,
+ "endColumn": 12,
+ "endOffset": 85701
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1073,
+ "startColumn": 4,
+ "startOffset": 86660,
+ "endLine": 1078,
+ "endColumn": 12,
+ "endOffset": 87008
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1091,
+ "startColumn": 4,
+ "startOffset": 85706,
+ "endColumn": 93,
+ "endOffset": 85795
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1079,
+ "startColumn": 4,
+ "startOffset": 87013,
+ "endColumn": 93,
+ "endOffset": 87102
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1092,
+ "startColumn": 4,
+ "startOffset": 85800,
+ "endLine": 1095,
+ "endColumn": 12,
+ "endOffset": 86101
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1080,
+ "startColumn": 4,
+ "startOffset": 87107,
+ "endLine": 1083,
+ "endColumn": 12,
+ "endOffset": 87408
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1096,
+ "startColumn": 4,
+ "startOffset": 86106,
+ "endLine": 1100,
+ "endColumn": 12,
+ "endOffset": 86363
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1084,
+ "startColumn": 4,
+ "startOffset": 87413,
+ "endLine": 1088,
+ "endColumn": 12,
+ "endOffset": 87670
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1101,
+ "startColumn": 4,
+ "startOffset": 86368,
+ "endLine": 1102,
+ "endColumn": 12,
+ "endOffset": 86488
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1089,
+ "startColumn": 4,
+ "startOffset": 87675,
+ "endLine": 1090,
+ "endColumn": 12,
+ "endOffset": 87795
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1103,
+ "startColumn": 4,
+ "startOffset": 86493,
+ "endLine": 1104,
+ "endColumn": 12,
+ "endOffset": 86615
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1091,
+ "startColumn": 4,
+ "startOffset": 87800,
+ "endLine": 1092,
+ "endColumn": 12,
+ "endOffset": 87922
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1105,
+ "startColumn": 4,
+ "startOffset": 86620,
+ "endLine": 1107,
+ "endColumn": 12,
+ "endOffset": 86854
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1093,
+ "startColumn": 4,
+ "startOffset": 87927,
+ "endLine": 1095,
+ "endColumn": 12,
+ "endOffset": 88161
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1108,
+ "startColumn": 4,
+ "startOffset": 86859,
+ "endLine": 1110,
+ "endColumn": 12,
+ "endOffset": 87065
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1096,
+ "startColumn": 4,
+ "startOffset": 88166,
+ "endLine": 1098,
+ "endColumn": 12,
+ "endOffset": 88372
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1111,
+ "startColumn": 4,
+ "startOffset": 87070,
+ "endLine": 1112,
+ "endColumn": 12,
+ "endOffset": 87184
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1099,
+ "startColumn": 4,
+ "startOffset": 88377,
+ "endLine": 1100,
+ "endColumn": 12,
+ "endOffset": 88491
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1113,
+ "startColumn": 4,
+ "startOffset": 87189,
+ "endLine": 1116,
+ "endColumn": 12,
+ "endOffset": 87377
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1101,
+ "startColumn": 4,
+ "startOffset": 88496,
+ "endLine": 1104,
+ "endColumn": 12,
+ "endOffset": 88684
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1117,
+ "startColumn": 4,
+ "startOffset": 87382,
+ "endLine": 1123,
+ "endColumn": 12,
+ "endOffset": 87832
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1105,
+ "startColumn": 4,
+ "startOffset": 88689,
+ "endLine": 1111,
+ "endColumn": 12,
+ "endOffset": 89139
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1124,
+ "startColumn": 4,
+ "startOffset": 87837,
+ "endLine": 1126,
+ "endColumn": 12,
+ "endOffset": 88013
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1112,
+ "startColumn": 4,
+ "startOffset": 89144,
+ "endLine": 1114,
+ "endColumn": 12,
+ "endOffset": 89320
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1127,
+ "startColumn": 4,
+ "startOffset": 88018,
+ "endLine": 1129,
+ "endColumn": 12,
+ "endOffset": 88135
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1115,
+ "startColumn": 4,
+ "startOffset": 89325,
+ "endLine": 1117,
+ "endColumn": 12,
+ "endOffset": 89442
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1130,
+ "startColumn": 4,
+ "startOffset": 88140,
+ "endLine": 1133,
+ "endColumn": 12,
+ "endOffset": 88394
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1118,
+ "startColumn": 4,
+ "startOffset": 89447,
+ "endLine": 1121,
+ "endColumn": 12,
+ "endOffset": 89701
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1134,
+ "startColumn": 4,
+ "startOffset": 88399,
+ "endLine": 1135,
+ "endColumn": 12,
+ "endOffset": 88507
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1122,
+ "startColumn": 4,
+ "startOffset": 89706,
+ "endLine": 1123,
+ "endColumn": 12,
+ "endOffset": 89814
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1136,
+ "startColumn": 4,
+ "startOffset": 88512,
+ "endLine": 1139,
+ "endColumn": 12,
+ "endOffset": 88694
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1124,
+ "startColumn": 4,
+ "startOffset": 89819,
+ "endLine": 1127,
+ "endColumn": 12,
+ "endOffset": 90001
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1140,
+ "startColumn": 4,
+ "startOffset": 88699,
+ "endLine": 1141,
+ "endColumn": 12,
+ "endOffset": 88796
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1128,
+ "startColumn": 4,
+ "startOffset": 90006,
+ "endLine": 1129,
+ "endColumn": 12,
+ "endOffset": 90103
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1142,
+ "startColumn": 4,
+ "startOffset": 88801,
+ "endLine": 1147,
+ "endColumn": 12,
+ "endOffset": 89240
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1130,
+ "startColumn": 4,
+ "startOffset": 90108,
+ "endLine": 1135,
+ "endColumn": 12,
+ "endOffset": 90547
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1148,
+ "startColumn": 4,
+ "startOffset": 89245,
+ "endLine": 1149,
+ "endColumn": 12,
+ "endOffset": 89364
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1136,
+ "startColumn": 4,
+ "startOffset": 90552,
+ "endLine": 1137,
+ "endColumn": 12,
+ "endOffset": 90671
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1150,
+ "startColumn": 4,
+ "startOffset": 89369,
+ "endLine": 1153,
+ "endColumn": 12,
+ "endOffset": 89649
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1138,
+ "startColumn": 4,
+ "startOffset": 90676,
+ "endLine": 1141,
+ "endColumn": 12,
+ "endOffset": 90956
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1154,
+ "startColumn": 4,
+ "startOffset": 89654,
+ "endLine": 1165,
+ "endColumn": 12,
+ "endOffset": 90536
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1142,
+ "startColumn": 4,
+ "startOffset": 90961,
+ "endLine": 1153,
+ "endColumn": 12,
+ "endOffset": 91843
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1166,
+ "startColumn": 4,
+ "startOffset": 90541,
+ "endLine": 1171,
+ "endColumn": 12,
+ "endOffset": 90830
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1154,
+ "startColumn": 4,
+ "startOffset": 91848,
+ "endLine": 1159,
+ "endColumn": 12,
+ "endOffset": 92137
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1172,
+ "startColumn": 4,
+ "startOffset": 90835,
+ "endLine": 1182,
+ "endColumn": 12,
+ "endOffset": 91562
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1160,
+ "startColumn": 4,
+ "startOffset": 92142,
+ "endLine": 1170,
+ "endColumn": 12,
+ "endOffset": 92869
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1183,
+ "startColumn": 4,
+ "startOffset": 91567,
+ "endLine": 1185,
+ "endColumn": 12,
+ "endOffset": 91734
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1171,
+ "startColumn": 4,
+ "startOffset": 92874,
+ "endLine": 1173,
+ "endColumn": 12,
+ "endOffset": 93041
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1186,
+ "startColumn": 4,
+ "startOffset": 91739,
+ "endLine": 1190,
+ "endColumn": 12,
+ "endOffset": 92070
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1174,
+ "startColumn": 4,
+ "startOffset": 93046,
+ "endLine": 1178,
+ "endColumn": 12,
+ "endOffset": 93377
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1191,
+ "startColumn": 4,
+ "startOffset": 92075,
+ "endLine": 1202,
+ "endColumn": 12,
+ "endOffset": 92937
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1179,
+ "startColumn": 4,
+ "startOffset": 93382,
+ "endLine": 1190,
+ "endColumn": 12,
+ "endOffset": 94244
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1203,
+ "startColumn": 4,
+ "startOffset": 92942,
+ "endLine": 1207,
+ "endColumn": 12,
+ "endOffset": 93215
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1191,
+ "startColumn": 4,
+ "startOffset": 94249,
+ "endLine": 1195,
+ "endColumn": 12,
+ "endOffset": 94522
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1208,
+ "startColumn": 4,
+ "startOffset": 93220,
+ "endLine": 1210,
+ "endColumn": 12,
+ "endOffset": 93418
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 33,
+ "startColumn": 4,
+ "startOffset": 3303,
+ "endLine": 35,
+ "endColumn": 12,
+ "endOffset": 3501
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1211,
+ "startColumn": 4,
+ "startOffset": 93423,
+ "endLine": 1213,
+ "endColumn": 12,
+ "endOffset": 93609
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 36,
+ "startColumn": 4,
+ "startOffset": 3506,
+ "endLine": 38,
+ "endColumn": 12,
+ "endOffset": 3692
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1214,
+ "startColumn": 4,
+ "startOffset": 93614,
+ "endLine": 1216,
+ "endColumn": 12,
+ "endOffset": 93804
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 39,
+ "startColumn": 4,
+ "startOffset": 3697,
+ "endLine": 41,
+ "endColumn": 12,
+ "endOffset": 3887
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1217,
+ "startColumn": 4,
+ "startOffset": 93809,
+ "endLine": 1219,
+ "endColumn": 12,
+ "endOffset": 93987
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 42,
+ "startColumn": 4,
+ "startOffset": 3892,
+ "endLine": 44,
+ "endColumn": 12,
+ "endOffset": 4070
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1220,
+ "startColumn": 4,
+ "startOffset": 93992,
+ "endLine": 1223,
+ "endColumn": 10,
+ "endOffset": 94189
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 45,
+ "startColumn": 4,
+ "startOffset": 4075,
+ "endLine": 48,
+ "endColumn": 10,
+ "endOffset": 4272
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1224,
+ "startColumn": 4,
+ "startOffset": 94194,
+ "endLine": 1227,
+ "endColumn": 10,
+ "endOffset": 94395
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 49,
+ "startColumn": 4,
+ "startOffset": 4277,
+ "endLine": 52,
+ "endColumn": 10,
+ "endOffset": 4478
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1228,
+ "startColumn": 4,
+ "startOffset": 94400,
+ "endLine": 1265,
+ "endColumn": 12,
+ "endOffset": 97257
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1198,
+ "startColumn": 4,
+ "startOffset": 94753,
+ "endLine": 1235,
+ "endColumn": 12,
+ "endOffset": 97610
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1266,
+ "startColumn": 4,
+ "startOffset": 97262,
+ "endLine": 1304,
+ "endColumn": 12,
+ "endOffset": 100259
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1236,
+ "startColumn": 4,
+ "startOffset": 97615,
+ "endLine": 1274,
+ "endColumn": 12,
+ "endOffset": 100612
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1305,
+ "startColumn": 4,
+ "startOffset": 100264,
+ "endColumn": 61,
+ "endOffset": 100321
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1275,
+ "startColumn": 4,
+ "startOffset": 100617,
+ "endColumn": 61,
+ "endOffset": 100674
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1306,
+ "startColumn": 4,
+ "startOffset": 100326,
+ "endLine": 1315,
+ "endColumn": 12,
+ "endOffset": 100951
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1276,
+ "startColumn": 4,
+ "startOffset": 100679,
+ "endLine": 1285,
+ "endColumn": 12,
+ "endOffset": 101304
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1316,
+ "startColumn": 4,
+ "startOffset": 100956,
+ "endLine": 1324,
+ "endColumn": 12,
+ "endOffset": 101565
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1286,
+ "startColumn": 4,
+ "startOffset": 101309,
+ "endLine": 1294,
+ "endColumn": 12,
+ "endOffset": 101918
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1325,
+ "startColumn": 4,
+ "startOffset": 101570,
+ "endColumn": 85,
+ "endOffset": 101651
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1297,
+ "startColumn": 4,
+ "startOffset": 102149,
+ "endColumn": 85,
+ "endOffset": 102230
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1326,
+ "startColumn": 4,
+ "startOffset": 101656,
+ "endLine": 1327,
+ "endColumn": 12,
+ "endOffset": 101764
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1300,
+ "startColumn": 4,
+ "startOffset": 102460,
+ "endLine": 1301,
+ "endColumn": 12,
+ "endOffset": 102568
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1328,
+ "startColumn": 4,
+ "startOffset": 101769,
+ "endLine": 1331,
+ "endColumn": 12,
+ "endOffset": 101993
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1302,
+ "startColumn": 4,
+ "startOffset": 102573,
+ "endLine": 1305,
+ "endColumn": 12,
+ "endOffset": 102797
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1332,
+ "startColumn": 4,
+ "startOffset": 101998,
+ "endLine": 1335,
+ "endColumn": 12,
+ "endOffset": 102331
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1306,
+ "startColumn": 4,
+ "startOffset": 102802,
+ "endLine": 1309,
+ "endColumn": 12,
+ "endOffset": 103135
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1336,
+ "startColumn": 4,
+ "startOffset": 102336,
+ "endLine": 1338,
+ "endColumn": 12,
+ "endOffset": 102491
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1310,
+ "startColumn": 4,
+ "startOffset": 103140,
+ "endLine": 1312,
+ "endColumn": 12,
+ "endOffset": 103295
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1339,
+ "startColumn": 4,
+ "startOffset": 102496,
+ "endLine": 1341,
+ "endColumn": 12,
+ "endOffset": 102643
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1313,
+ "startColumn": 4,
+ "startOffset": 103300,
+ "endLine": 1315,
+ "endColumn": 12,
+ "endOffset": 103447
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1342,
+ "startColumn": 4,
+ "startOffset": 102648,
+ "endLine": 1344,
+ "endColumn": 12,
+ "endOffset": 102814
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1316,
+ "startColumn": 4,
+ "startOffset": 103452,
+ "endLine": 1318,
+ "endColumn": 12,
+ "endOffset": 103618
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1345,
+ "startColumn": 4,
+ "startOffset": 102819,
+ "endLine": 1347,
+ "endColumn": 12,
+ "endOffset": 102981
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1319,
+ "startColumn": 4,
+ "startOffset": 103623,
+ "endLine": 1321,
+ "endColumn": 12,
+ "endOffset": 103785
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1348,
+ "startColumn": 4,
+ "startOffset": 102986,
+ "endLine": 1351,
+ "endColumn": 12,
+ "endOffset": 103224
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1322,
+ "startColumn": 4,
+ "startOffset": 103790,
+ "endLine": 1325,
+ "endColumn": 12,
+ "endOffset": 104028
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1352,
+ "startColumn": 4,
+ "startOffset": 103229,
+ "endLine": 1354,
+ "endColumn": 12,
+ "endOffset": 103394
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1326,
+ "startColumn": 4,
+ "startOffset": 104033,
+ "endLine": 1328,
+ "endColumn": 12,
+ "endOffset": 104198
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1355,
+ "startColumn": 4,
+ "startOffset": 103399,
+ "endLine": 1357,
+ "endColumn": 12,
+ "endOffset": 103567
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1329,
+ "startColumn": 4,
+ "startOffset": 104203,
+ "endLine": 1331,
+ "endColumn": 12,
+ "endOffset": 104371
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1358,
+ "startColumn": 4,
+ "startOffset": 103572,
+ "endLine": 1360,
+ "endColumn": 12,
+ "endOffset": 103738
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1332,
+ "startColumn": 4,
+ "startOffset": 104376,
+ "endLine": 1334,
+ "endColumn": 12,
+ "endOffset": 104542
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1361,
+ "startColumn": 4,
+ "startOffset": 103743,
+ "endLine": 1364,
+ "endColumn": 12,
+ "endOffset": 104012
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1335,
+ "startColumn": 4,
+ "startOffset": 104547,
+ "endLine": 1338,
+ "endColumn": 12,
+ "endOffset": 104816
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1365,
+ "startColumn": 4,
+ "startOffset": 104017,
+ "endLine": 1367,
+ "endColumn": 12,
+ "endOffset": 104211
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1339,
+ "startColumn": 4,
+ "startOffset": 104821,
+ "endLine": 1341,
+ "endColumn": 12,
+ "endOffset": 105015
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1368,
+ "startColumn": 4,
+ "startOffset": 104216,
+ "endLine": 1370,
+ "endColumn": 12,
+ "endOffset": 104412
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 53,
+ "startColumn": 4,
+ "startOffset": 4483,
+ "endLine": 55,
+ "endColumn": 12,
+ "endOffset": 4679
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1371,
+ "startColumn": 4,
+ "startOffset": 104417,
+ "endLine": 1373,
+ "endColumn": 12,
+ "endOffset": 104601
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 56,
+ "startColumn": 4,
+ "startOffset": 4684,
+ "endLine": 58,
+ "endColumn": 12,
+ "endOffset": 4868
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1374,
+ "startColumn": 4,
+ "startOffset": 104606,
+ "endLine": 1376,
+ "endColumn": 12,
+ "endOffset": 104800
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 59,
+ "startColumn": 4,
+ "startOffset": 4873,
+ "endLine": 61,
+ "endColumn": 12,
+ "endOffset": 5067
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1377,
+ "startColumn": 4,
+ "startOffset": 104805,
+ "endLine": 1379,
+ "endColumn": 12,
+ "endOffset": 104987
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 62,
+ "startColumn": 4,
+ "startOffset": 5072,
+ "endLine": 64,
+ "endColumn": 12,
+ "endOffset": 5254
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1380,
+ "startColumn": 4,
+ "startOffset": 104992,
+ "endColumn": 83,
+ "endOffset": 105071
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1344,
+ "startColumn": 4,
+ "startOffset": 105241,
+ "endColumn": 83,
+ "endOffset": 105320
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1381,
+ "startColumn": 4,
+ "startOffset": 105076,
+ "endColumn": 95,
+ "endOffset": 105167
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1345,
+ "startColumn": 4,
+ "startOffset": 105325,
+ "endColumn": 95,
+ "endOffset": 105416
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1382,
+ "startColumn": 4,
+ "startOffset": 105172,
+ "endColumn": 95,
+ "endOffset": 105263
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1346,
+ "startColumn": 4,
+ "startOffset": 105421,
+ "endColumn": 95,
+ "endOffset": 105512
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1383,
+ "startColumn": 4,
+ "startOffset": 105268,
+ "endColumn": 97,
+ "endOffset": 105361
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1347,
+ "startColumn": 4,
+ "startOffset": 105517,
+ "endColumn": 97,
+ "endOffset": 105610
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1384,
+ "startColumn": 4,
+ "startOffset": 105366,
+ "endColumn": 99,
+ "endOffset": 105461
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1348,
+ "startColumn": 4,
+ "startOffset": 105615,
+ "endColumn": 99,
+ "endOffset": 105710
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1385,
+ "startColumn": 4,
+ "startOffset": 105466,
+ "endColumn": 101,
+ "endOffset": 105563
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1349,
+ "startColumn": 4,
+ "startOffset": 105715,
+ "endColumn": 101,
+ "endOffset": 105812
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1386,
+ "startColumn": 4,
+ "startOffset": 105568,
+ "endColumn": 101,
+ "endOffset": 105665
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1350,
+ "startColumn": 4,
+ "startOffset": 105817,
+ "endColumn": 101,
+ "endOffset": 105914
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1387,
+ "startColumn": 4,
+ "startOffset": 105670,
+ "endColumn": 101,
+ "endOffset": 105767
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1351,
+ "startColumn": 4,
+ "startOffset": 105919,
+ "endColumn": 101,
+ "endOffset": 106016
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1388,
+ "startColumn": 4,
+ "startOffset": 105772,
+ "endColumn": 101,
+ "endOffset": 105869
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1352,
+ "startColumn": 4,
+ "startOffset": 106021,
+ "endColumn": 101,
+ "endOffset": 106118
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1389,
+ "startColumn": 4,
+ "startOffset": 105874,
+ "endColumn": 101,
+ "endOffset": 105971
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1353,
+ "startColumn": 4,
+ "startOffset": 106123,
+ "endColumn": 101,
+ "endOffset": 106220
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1390,
+ "startColumn": 4,
+ "startOffset": 105976,
+ "endColumn": 99,
+ "endOffset": 106071
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1354,
+ "startColumn": 4,
+ "startOffset": 106225,
+ "endColumn": 99,
+ "endOffset": 106320
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1391,
+ "startColumn": 4,
+ "startOffset": 106076,
+ "endColumn": 95,
+ "endOffset": 106167
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1355,
+ "startColumn": 4,
+ "startOffset": 106325,
+ "endColumn": 95,
+ "endOffset": 106416
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1392,
+ "startColumn": 4,
+ "startOffset": 106172,
+ "endColumn": 111,
+ "endOffset": 106279
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1356,
+ "startColumn": 4,
+ "startOffset": 106421,
+ "endColumn": 111,
+ "endOffset": 106528
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1393,
+ "startColumn": 4,
+ "startOffset": 106284,
+ "endColumn": 128,
+ "endOffset": 106408
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1357,
+ "startColumn": 4,
+ "startOffset": 106533,
+ "endColumn": 128,
+ "endOffset": 106657
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1394,
+ "startColumn": 4,
+ "startOffset": 106413,
+ "endColumn": 122,
+ "endOffset": 106531
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1358,
+ "startColumn": 4,
+ "startOffset": 106662,
+ "endColumn": 122,
+ "endOffset": 106780
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1395,
+ "startColumn": 4,
+ "startOffset": 106536,
+ "endLine": 1396,
+ "endColumn": 12,
+ "endOffset": 106685
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1359,
+ "startColumn": 4,
+ "startOffset": 106785,
+ "endLine": 1360,
+ "endColumn": 12,
+ "endOffset": 106934
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1397,
+ "startColumn": 4,
+ "startOffset": 106690,
+ "endLine": 1398,
+ "endColumn": 12,
+ "endOffset": 106839
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1361,
+ "startColumn": 4,
+ "startOffset": 106939,
+ "endLine": 1362,
+ "endColumn": 12,
+ "endOffset": 107088
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1399,
+ "startColumn": 4,
+ "startOffset": 106844,
+ "endColumn": 97,
+ "endOffset": 106937
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1363,
+ "startColumn": 4,
+ "startOffset": 107093,
+ "endColumn": 97,
+ "endOffset": 107186
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1400,
+ "startColumn": 4,
+ "startOffset": 106942,
+ "endColumn": 113,
+ "endOffset": 107051
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1364,
+ "startColumn": 4,
+ "startOffset": 107191,
+ "endColumn": 113,
+ "endOffset": 107300
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1401,
+ "startColumn": 4,
+ "startOffset": 107056,
+ "endColumn": 93,
+ "endOffset": 107145
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1365,
+ "startColumn": 4,
+ "startOffset": 107305,
+ "endColumn": 93,
+ "endOffset": 107394
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1402,
+ "startColumn": 4,
+ "startOffset": 107150,
+ "endLine": 1403,
+ "endColumn": 12,
+ "endOffset": 107285
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1366,
+ "startColumn": 4,
+ "startOffset": 107399,
+ "endLine": 1367,
+ "endColumn": 12,
+ "endOffset": 107534
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1404,
+ "startColumn": 4,
+ "startOffset": 107290,
+ "endLine": 1405,
+ "endColumn": 12,
+ "endOffset": 107419
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1368,
+ "startColumn": 4,
+ "startOffset": 107539,
+ "endLine": 1369,
+ "endColumn": 12,
+ "endOffset": 107668
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1406,
+ "startColumn": 4,
+ "startOffset": 107424,
+ "endColumn": 95,
+ "endOffset": 107515
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1370,
+ "startColumn": 4,
+ "startOffset": 107673,
+ "endColumn": 95,
+ "endOffset": 107764
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1407,
+ "startColumn": 4,
+ "startOffset": 107520,
+ "endColumn": 111,
+ "endOffset": 107627
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1371,
+ "startColumn": 4,
+ "startOffset": 107769,
+ "endColumn": 111,
+ "endOffset": 107876
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1408,
+ "startColumn": 4,
+ "startOffset": 107632,
+ "endColumn": 99,
+ "endOffset": 107727
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1372,
+ "startColumn": 4,
+ "startOffset": 107881,
+ "endColumn": 99,
+ "endOffset": 107976
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1409,
+ "startColumn": 4,
+ "startOffset": 107732,
+ "endColumn": 115,
+ "endOffset": 107843
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1373,
+ "startColumn": 4,
+ "startOffset": 107981,
+ "endColumn": 115,
+ "endOffset": 108092
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1410,
+ "startColumn": 4,
+ "startOffset": 107848,
+ "endColumn": 95,
+ "endOffset": 107939
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1374,
+ "startColumn": 4,
+ "startOffset": 108097,
+ "endColumn": 95,
+ "endOffset": 108188
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1411,
+ "startColumn": 4,
+ "startOffset": 107944,
+ "endColumn": 111,
+ "endOffset": 108051
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1375,
+ "startColumn": 4,
+ "startOffset": 108193,
+ "endColumn": 111,
+ "endOffset": 108300
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1412,
+ "startColumn": 4,
+ "startOffset": 108056,
+ "endLine": 1413,
+ "endColumn": 12,
+ "endOffset": 108191
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1376,
+ "startColumn": 4,
+ "startOffset": 108305,
+ "endLine": 1377,
+ "endColumn": 12,
+ "endOffset": 108440
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1414,
+ "startColumn": 4,
+ "startOffset": 108196,
+ "endColumn": 135,
+ "endOffset": 108327
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1378,
+ "startColumn": 4,
+ "startOffset": 108445,
+ "endColumn": 135,
+ "endOffset": 108576
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1415,
+ "startColumn": 4,
+ "startOffset": 108332,
+ "endLine": 1416,
+ "endColumn": 12,
+ "endOffset": 108491
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1379,
+ "startColumn": 4,
+ "startOffset": 108581,
+ "endLine": 1380,
+ "endColumn": 12,
+ "endOffset": 108740
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1417,
+ "startColumn": 4,
+ "startOffset": 108496,
+ "endColumn": 129,
+ "endOffset": 108621
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1381,
+ "startColumn": 4,
+ "startOffset": 108745,
+ "endColumn": 129,
+ "endOffset": 108870
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1418,
+ "startColumn": 4,
+ "startOffset": 108626,
+ "endLine": 1419,
+ "endColumn": 12,
+ "endOffset": 108779
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1382,
+ "startColumn": 4,
+ "startOffset": 108875,
+ "endLine": 1383,
+ "endColumn": 12,
+ "endOffset": 109028
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1420,
+ "startColumn": 4,
+ "startOffset": 108784,
+ "endLine": 1421,
+ "endColumn": 12,
+ "endOffset": 108929
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1384,
+ "startColumn": 4,
+ "startOffset": 109033,
+ "endLine": 1385,
+ "endColumn": 12,
+ "endOffset": 109178
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1422,
+ "startColumn": 4,
+ "startOffset": 108934,
+ "endColumn": 140,
+ "endOffset": 109070
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1386,
+ "startColumn": 4,
+ "startOffset": 109183,
+ "endColumn": 140,
+ "endOffset": 109319
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1423,
+ "startColumn": 4,
+ "startOffset": 109075,
+ "endLine": 1424,
+ "endColumn": 12,
+ "endOffset": 109214
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1387,
+ "startColumn": 4,
+ "startOffset": 109324,
+ "endLine": 1388,
+ "endColumn": 12,
+ "endOffset": 109463
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1425,
+ "startColumn": 4,
+ "startOffset": 109219,
+ "endColumn": 134,
+ "endOffset": 109349
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1389,
+ "startColumn": 4,
+ "startOffset": 109468,
+ "endColumn": 134,
+ "endOffset": 109598
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1426,
+ "startColumn": 4,
+ "startOffset": 109354,
+ "endColumn": 111,
+ "endOffset": 109461
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1390,
+ "startColumn": 4,
+ "startOffset": 109603,
+ "endColumn": 111,
+ "endOffset": 109710
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1427,
+ "startColumn": 4,
+ "startOffset": 109466,
+ "endColumn": 127,
+ "endOffset": 109589
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1391,
+ "startColumn": 4,
+ "startOffset": 109715,
+ "endColumn": 127,
+ "endOffset": 109838
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1428,
+ "startColumn": 4,
+ "startOffset": 109594,
+ "endLine": 1429,
+ "endColumn": 12,
+ "endOffset": 109725
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1392,
+ "startColumn": 4,
+ "startOffset": 109843,
+ "endLine": 1393,
+ "endColumn": 12,
+ "endOffset": 109974
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1430,
+ "startColumn": 4,
+ "startOffset": 109730,
+ "endLine": 1431,
+ "endColumn": 12,
+ "endOffset": 109867
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1394,
+ "startColumn": 4,
+ "startOffset": 109979,
+ "endLine": 1395,
+ "endColumn": 12,
+ "endOffset": 110116
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1432,
+ "startColumn": 4,
+ "startOffset": 109872,
+ "endLine": 1433,
+ "endColumn": 12,
+ "endOffset": 110009
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1396,
+ "startColumn": 4,
+ "startOffset": 110121,
+ "endLine": 1397,
+ "endColumn": 12,
+ "endOffset": 110258
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1434,
+ "startColumn": 4,
+ "startOffset": 110014,
+ "endColumn": 111,
+ "endOffset": 110121
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1398,
+ "startColumn": 4,
+ "startOffset": 110263,
+ "endColumn": 111,
+ "endOffset": 110370
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1435,
+ "startColumn": 4,
+ "startOffset": 110126,
+ "endColumn": 139,
+ "endOffset": 110261
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1399,
+ "startColumn": 4,
+ "startOffset": 110375,
+ "endColumn": 139,
+ "endOffset": 110510
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1436,
+ "startColumn": 4,
+ "startOffset": 110266,
+ "endColumn": 67,
+ "endOffset": 110329
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1400,
+ "startColumn": 4,
+ "startOffset": 110515,
+ "endColumn": 67,
+ "endOffset": 110578
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1437,
+ "startColumn": 4,
+ "startOffset": 110334,
+ "endColumn": 72,
+ "endOffset": 110402
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1401,
+ "startColumn": 4,
+ "startOffset": 110583,
+ "endColumn": 72,
+ "endOffset": 110651
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1438,
+ "startColumn": 4,
+ "startOffset": 110407,
+ "endColumn": 73,
+ "endOffset": 110476
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1402,
+ "startColumn": 4,
+ "startOffset": 110656,
+ "endColumn": 73,
+ "endOffset": 110725
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1439,
+ "startColumn": 4,
+ "startOffset": 110481,
+ "endColumn": 72,
+ "endOffset": 110549
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1403,
+ "startColumn": 4,
+ "startOffset": 110730,
+ "endColumn": 72,
+ "endOffset": 110798
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1440,
+ "startColumn": 4,
+ "startOffset": 110554,
+ "endColumn": 73,
+ "endOffset": 110623
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1404,
+ "startColumn": 4,
+ "startOffset": 110803,
+ "endColumn": 73,
+ "endOffset": 110872
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1441,
+ "startColumn": 4,
+ "startOffset": 110628,
+ "endLine": 1442,
+ "endColumn": 12,
+ "endOffset": 110769
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1405,
+ "startColumn": 4,
+ "startOffset": 110877,
+ "endLine": 1406,
+ "endColumn": 12,
+ "endOffset": 111018
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1443,
+ "startColumn": 4,
+ "startOffset": 110774,
+ "endLine": 1444,
+ "endColumn": 12,
+ "endOffset": 110913
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1407,
+ "startColumn": 4,
+ "startOffset": 111023,
+ "endLine": 1408,
+ "endColumn": 12,
+ "endOffset": 111162
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1445,
+ "startColumn": 4,
+ "startOffset": 110918,
+ "endLine": 1446,
+ "endColumn": 12,
+ "endOffset": 111051
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1409,
+ "startColumn": 4,
+ "startOffset": 111167,
+ "endLine": 1410,
+ "endColumn": 12,
+ "endOffset": 111300
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1447,
+ "startColumn": 4,
+ "startOffset": 111056,
+ "endColumn": 25,
+ "endOffset": 111077
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 65,
+ "startColumn": 4,
+ "startOffset": 5259,
+ "endColumn": 25,
+ "endOffset": 5280
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1448,
+ "startColumn": 4,
+ "startOffset": 111082,
+ "endColumn": 65,
+ "endOffset": 111143
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1413,
+ "startColumn": 4,
+ "startOffset": 111526,
+ "endColumn": 65,
+ "endOffset": 111587
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1449,
+ "startColumn": 4,
+ "startOffset": 111148,
+ "endColumn": 89,
+ "endOffset": 111233
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1414,
+ "startColumn": 4,
+ "startOffset": 111592,
+ "endColumn": 89,
+ "endOffset": 111677
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1450,
+ "startColumn": 4,
+ "startOffset": 111238,
+ "endColumn": 79,
+ "endOffset": 111313
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1415,
+ "startColumn": 4,
+ "startOffset": 111682,
+ "endColumn": 79,
+ "endOffset": 111757
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1451,
+ "startColumn": 4,
+ "startOffset": 111318,
+ "endColumn": 91,
+ "endOffset": 111405
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1416,
+ "startColumn": 4,
+ "startOffset": 111762,
+ "endColumn": 91,
+ "endOffset": 111849
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1452,
+ "startColumn": 4,
+ "startOffset": 111410,
+ "endColumn": 97,
+ "endOffset": 111503
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1417,
+ "startColumn": 4,
+ "startOffset": 111854,
+ "endColumn": 97,
+ "endOffset": 111947
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1453,
+ "startColumn": 4,
+ "startOffset": 111508,
+ "endLine": 1454,
+ "endColumn": 12,
+ "endOffset": 111613
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1418,
+ "startColumn": 4,
+ "startOffset": 111952,
+ "endLine": 1419,
+ "endColumn": 12,
+ "endOffset": 112057
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1455,
+ "startColumn": 4,
+ "startOffset": 111618,
+ "endColumn": 77,
+ "endOffset": 111691
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1420,
+ "startColumn": 4,
+ "startOffset": 112062,
+ "endColumn": 77,
+ "endOffset": 112135
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1456,
+ "startColumn": 4,
+ "startOffset": 111696,
+ "endColumn": 105,
+ "endOffset": 111797
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1421,
+ "startColumn": 4,
+ "startOffset": 112140,
+ "endColumn": 105,
+ "endOffset": 112241
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1457,
+ "startColumn": 4,
+ "startOffset": 111802,
+ "endColumn": 91,
+ "endOffset": 111889
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1422,
+ "startColumn": 4,
+ "startOffset": 112246,
+ "endColumn": 91,
+ "endOffset": 112333
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1458,
+ "startColumn": 4,
+ "startOffset": 111894,
+ "endColumn": 103,
+ "endOffset": 111993
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1423,
+ "startColumn": 4,
+ "startOffset": 112338,
+ "endColumn": 103,
+ "endOffset": 112437
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1459,
+ "startColumn": 4,
+ "startOffset": 111998,
+ "endColumn": 109,
+ "endOffset": 112103
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1424,
+ "startColumn": 4,
+ "startOffset": 112442,
+ "endColumn": 109,
+ "endOffset": 112547
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1460,
+ "startColumn": 4,
+ "startOffset": 112108,
+ "endLine": 1461,
+ "endColumn": 12,
+ "endOffset": 112225
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1425,
+ "startColumn": 4,
+ "startOffset": 112552,
+ "endLine": 1426,
+ "endColumn": 12,
+ "endOffset": 112669
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1462,
+ "startColumn": 4,
+ "startOffset": 112230,
+ "endLine": 1465,
+ "endColumn": 12,
+ "endOffset": 112388
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1427,
+ "startColumn": 4,
+ "startOffset": 112674,
+ "endLine": 1430,
+ "endColumn": 12,
+ "endOffset": 112832
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1466,
+ "startColumn": 4,
+ "startOffset": 112393,
+ "endLine": 1469,
+ "endColumn": 12,
+ "endOffset": 112545
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1431,
+ "startColumn": 4,
+ "startOffset": 112837,
+ "endLine": 1434,
+ "endColumn": 12,
+ "endOffset": 112989
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1470,
+ "startColumn": 4,
+ "startOffset": 112550,
+ "endColumn": 34,
+ "endOffset": 112580
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 66,
+ "startColumn": 4,
+ "startOffset": 5285,
+ "endColumn": 34,
+ "endOffset": 5315
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1471,
+ "startColumn": 4,
+ "startOffset": 112585,
+ "endLine": 1477,
+ "endColumn": 10,
+ "endOffset": 112998
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 67,
+ "startColumn": 4,
+ "startOffset": 5320,
+ "endLine": 73,
+ "endColumn": 10,
+ "endOffset": 5733
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1478,
+ "startColumn": 4,
+ "startOffset": 113003,
+ "endLine": 1484,
+ "endColumn": 10,
+ "endOffset": 113376
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 74,
+ "startColumn": 4,
+ "startOffset": 5738,
+ "endLine": 80,
+ "endColumn": 10,
+ "endOffset": 6111
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1485,
+ "startColumn": 4,
+ "startOffset": 113381,
+ "endLine": 1487,
+ "endColumn": 10,
+ "endOffset": 113553
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 81,
+ "startColumn": 4,
+ "startOffset": 6116,
+ "endLine": 83,
+ "endColumn": 10,
+ "endOffset": 6288
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1488,
+ "startColumn": 4,
+ "startOffset": 113558,
+ "endLine": 1490,
+ "endColumn": 10,
+ "endOffset": 113732
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 84,
+ "startColumn": 4,
+ "startOffset": 6293,
+ "endLine": 86,
+ "endColumn": 10,
+ "endOffset": 6467
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1491,
+ "startColumn": 4,
+ "startOffset": 113737,
+ "endLine": 1493,
+ "endColumn": 12,
+ "endOffset": 113915
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 87,
+ "startColumn": 4,
+ "startOffset": 6472,
+ "endLine": 89,
+ "endColumn": 12,
+ "endOffset": 6650
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1494,
+ "startColumn": 4,
+ "startOffset": 113920,
+ "endLine": 1499,
+ "endColumn": 12,
+ "endOffset": 114280
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 90,
+ "startColumn": 4,
+ "startOffset": 6655,
+ "endLine": 95,
+ "endColumn": 12,
+ "endOffset": 7015
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1500,
+ "startColumn": 4,
+ "startOffset": 114285,
+ "endColumn": 79,
+ "endOffset": 114360
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1435,
+ "startColumn": 4,
+ "startOffset": 112994,
+ "endColumn": 79,
+ "endOffset": 113069
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1501,
+ "startColumn": 4,
+ "startOffset": 114365,
+ "endColumn": 99,
+ "endOffset": 114460
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1436,
+ "startColumn": 4,
+ "startOffset": 113074,
+ "endColumn": 99,
+ "endOffset": 113169
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1502,
+ "startColumn": 4,
+ "startOffset": 114465,
+ "endColumn": 89,
+ "endOffset": 114550
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1437,
+ "startColumn": 4,
+ "startOffset": 113174,
+ "endColumn": 89,
+ "endOffset": 113259
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1503,
+ "startColumn": 4,
+ "startOffset": 114555,
+ "endColumn": 109,
+ "endOffset": 114660
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1438,
+ "startColumn": 4,
+ "startOffset": 113264,
+ "endColumn": 109,
+ "endOffset": 113369
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1504,
+ "startColumn": 4,
+ "startOffset": 114665,
+ "endColumn": 91,
+ "endOffset": 114752
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1439,
+ "startColumn": 4,
+ "startOffset": 113374,
+ "endColumn": 91,
+ "endOffset": 113461
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1505,
+ "startColumn": 4,
+ "startOffset": 114757,
+ "endLine": 1506,
+ "endColumn": 12,
+ "endOffset": 114852
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1442,
+ "startColumn": 4,
+ "startOffset": 113687,
+ "endLine": 1443,
+ "endColumn": 12,
+ "endOffset": 113782
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1507,
+ "startColumn": 4,
+ "startOffset": 114857,
+ "endLine": 1508,
+ "endColumn": 12,
+ "endOffset": 114964
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1444,
+ "startColumn": 4,
+ "startOffset": 113787,
+ "endLine": 1445,
+ "endColumn": 12,
+ "endOffset": 113894
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1509,
+ "startColumn": 4,
+ "startOffset": 114969,
+ "endLine": 1510,
+ "endColumn": 12,
+ "endOffset": 115078
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1446,
+ "startColumn": 4,
+ "startOffset": 113899,
+ "endLine": 1447,
+ "endColumn": 12,
+ "endOffset": 114008
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1511,
+ "startColumn": 4,
+ "startOffset": 115083,
+ "endLine": 1512,
+ "endColumn": 12,
+ "endOffset": 115194
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1448,
+ "startColumn": 4,
+ "startOffset": 114013,
+ "endLine": 1449,
+ "endColumn": 12,
+ "endOffset": 114124
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1513,
+ "startColumn": 4,
+ "startOffset": 115199,
+ "endLine": 1514,
+ "endColumn": 12,
+ "endOffset": 115310
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1450,
+ "startColumn": 4,
+ "startOffset": 114129,
+ "endLine": 1451,
+ "endColumn": 12,
+ "endOffset": 114240
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1515,
+ "startColumn": 4,
+ "startOffset": 115315,
+ "endColumn": 93,
+ "endOffset": 115404
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1452,
+ "startColumn": 4,
+ "startOffset": 114245,
+ "endColumn": 93,
+ "endOffset": 114334
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1516,
+ "startColumn": 4,
+ "startOffset": 115409,
+ "endColumn": 113,
+ "endOffset": 115518
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1453,
+ "startColumn": 4,
+ "startOffset": 114339,
+ "endColumn": 113,
+ "endOffset": 114448
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1517,
+ "startColumn": 4,
+ "startOffset": 115523,
+ "endColumn": 117,
+ "endOffset": 115636
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1454,
+ "startColumn": 4,
+ "startOffset": 114453,
+ "endColumn": 117,
+ "endOffset": 114566
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1518,
+ "startColumn": 4,
+ "startOffset": 115641,
+ "endLine": 1519,
+ "endColumn": 12,
+ "endOffset": 115738
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1455,
+ "startColumn": 4,
+ "startOffset": 114571,
+ "endLine": 1456,
+ "endColumn": 12,
+ "endOffset": 114668
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1520,
+ "startColumn": 4,
+ "startOffset": 115743,
+ "endLine": 1521,
+ "endColumn": 12,
+ "endOffset": 115858
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1457,
+ "startColumn": 4,
+ "startOffset": 114673,
+ "endLine": 1458,
+ "endColumn": 12,
+ "endOffset": 114788
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1522,
+ "startColumn": 4,
+ "startOffset": 115863,
+ "endLine": 1523,
+ "endColumn": 12,
+ "endOffset": 115980
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1459,
+ "startColumn": 4,
+ "startOffset": 114793,
+ "endLine": 1460,
+ "endColumn": 12,
+ "endOffset": 114910
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1524,
+ "startColumn": 4,
+ "startOffset": 115985,
+ "endColumn": 81,
+ "endOffset": 116062
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1461,
+ "startColumn": 4,
+ "startOffset": 114915,
+ "endColumn": 81,
+ "endOffset": 114992
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1525,
+ "startColumn": 4,
+ "startOffset": 116067,
+ "endColumn": 103,
+ "endOffset": 116166
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1462,
+ "startColumn": 4,
+ "startOffset": 114997,
+ "endColumn": 103,
+ "endOffset": 115096
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1526,
+ "startColumn": 4,
+ "startOffset": 116171,
+ "endColumn": 119,
+ "endOffset": 116286
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1463,
+ "startColumn": 4,
+ "startOffset": 115101,
+ "endColumn": 119,
+ "endOffset": 115216
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1527,
+ "startColumn": 4,
+ "startOffset": 116291,
+ "endColumn": 125,
+ "endOffset": 116412
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1464,
+ "startColumn": 4,
+ "startOffset": 115221,
+ "endColumn": 125,
+ "endOffset": 115342
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1528,
+ "startColumn": 4,
+ "startOffset": 116417,
+ "endColumn": 97,
+ "endOffset": 116510
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1465,
+ "startColumn": 4,
+ "startOffset": 115347,
+ "endColumn": 97,
+ "endOffset": 115440
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1529,
+ "startColumn": 4,
+ "startOffset": 116515,
+ "endColumn": 93,
+ "endOffset": 116604
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1466,
+ "startColumn": 4,
+ "startOffset": 115445,
+ "endColumn": 93,
+ "endOffset": 115534
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1530,
+ "startColumn": 4,
+ "startOffset": 116609,
+ "endColumn": 87,
+ "endOffset": 116692
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1467,
+ "startColumn": 4,
+ "startOffset": 115539,
+ "endColumn": 87,
+ "endOffset": 115622
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1531,
+ "startColumn": 4,
+ "startOffset": 116697,
+ "endColumn": 111,
+ "endOffset": 116804
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1468,
+ "startColumn": 4,
+ "startOffset": 115627,
+ "endColumn": 111,
+ "endOffset": 115734
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1532,
+ "startColumn": 4,
+ "startOffset": 116809,
+ "endColumn": 115,
+ "endOffset": 116920
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1469,
+ "startColumn": 4,
+ "startOffset": 115739,
+ "endColumn": 115,
+ "endOffset": 115850
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1533,
+ "startColumn": 4,
+ "startOffset": 116925,
+ "endColumn": 121,
+ "endOffset": 117042
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1470,
+ "startColumn": 4,
+ "startOffset": 115855,
+ "endColumn": 121,
+ "endOffset": 115972
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1534,
+ "startColumn": 4,
+ "startOffset": 117047,
+ "endColumn": 111,
+ "endOffset": 117154
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1471,
+ "startColumn": 4,
+ "startOffset": 115977,
+ "endColumn": 111,
+ "endOffset": 116084
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1535,
+ "startColumn": 4,
+ "startOffset": 117159,
+ "endLine": 1537,
+ "endColumn": 12,
+ "endOffset": 117329
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1472,
+ "startColumn": 4,
+ "startOffset": 116089,
+ "endLine": 1474,
+ "endColumn": 12,
+ "endOffset": 116259
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1538,
+ "startColumn": 4,
+ "startOffset": 117334,
+ "endColumn": 115,
+ "endOffset": 117445
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1475,
+ "startColumn": 4,
+ "startOffset": 116264,
+ "endColumn": 115,
+ "endOffset": 116375
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1539,
+ "startColumn": 4,
+ "startOffset": 117450,
+ "endColumn": 85,
+ "endOffset": 117531
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1476,
+ "startColumn": 4,
+ "startOffset": 116380,
+ "endColumn": 85,
+ "endOffset": 116461
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1540,
+ "startColumn": 4,
+ "startOffset": 117536,
+ "endLine": 1541,
+ "endColumn": 12,
+ "endOffset": 117643
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1477,
+ "startColumn": 4,
+ "startOffset": 116466,
+ "endLine": 1478,
+ "endColumn": 12,
+ "endOffset": 116573
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1542,
+ "startColumn": 4,
+ "startOffset": 117648,
+ "endLine": 1543,
+ "endColumn": 12,
+ "endOffset": 117767
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1479,
+ "startColumn": 4,
+ "startOffset": 116578,
+ "endLine": 1480,
+ "endColumn": 12,
+ "endOffset": 116697
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1544,
+ "startColumn": 4,
+ "startOffset": 117772,
+ "endColumn": 66,
+ "endOffset": 117834
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1481,
+ "startColumn": 4,
+ "startOffset": 116702,
+ "endColumn": 66,
+ "endOffset": 116764
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1545,
+ "startColumn": 4,
+ "startOffset": 117839,
+ "endLine": 1546,
+ "endColumn": 12,
+ "endOffset": 117960
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1482,
+ "startColumn": 4,
+ "startOffset": 116769,
+ "endLine": 1483,
+ "endColumn": 12,
+ "endOffset": 116890
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1547,
+ "startColumn": 4,
+ "startOffset": 117965,
+ "endColumn": 67,
+ "endOffset": 118028
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1484,
+ "startColumn": 4,
+ "startOffset": 116895,
+ "endColumn": 67,
+ "endOffset": 116958
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1548,
+ "startColumn": 4,
+ "startOffset": 118033,
+ "endLine": 1549,
+ "endColumn": 12,
+ "endOffset": 118156
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1485,
+ "startColumn": 4,
+ "startOffset": 116963,
+ "endLine": 1486,
+ "endColumn": 12,
+ "endOffset": 117086
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1550,
+ "startColumn": 4,
+ "startOffset": 118161,
+ "endLine": 1551,
+ "endColumn": 12,
+ "endOffset": 118300
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1487,
+ "startColumn": 4,
+ "startOffset": 117091,
+ "endLine": 1488,
+ "endColumn": 12,
+ "endOffset": 117230
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1552,
+ "startColumn": 4,
+ "startOffset": 118305,
+ "endLine": 1553,
+ "endColumn": 12,
+ "endOffset": 118428
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1489,
+ "startColumn": 4,
+ "startOffset": 117235,
+ "endLine": 1490,
+ "endColumn": 12,
+ "endOffset": 117358
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1554,
+ "startColumn": 4,
+ "startOffset": 118433,
+ "endColumn": 68,
+ "endOffset": 118497
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1491,
+ "startColumn": 4,
+ "startOffset": 117363,
+ "endColumn": 68,
+ "endOffset": 117427
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1555,
+ "startColumn": 4,
+ "startOffset": 118502,
+ "endColumn": 94,
+ "endOffset": 118592
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1492,
+ "startColumn": 4,
+ "startOffset": 117432,
+ "endColumn": 94,
+ "endOffset": 117522
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1556,
+ "startColumn": 4,
+ "startOffset": 118597,
+ "endColumn": 114,
+ "endOffset": 118707
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1493,
+ "startColumn": 4,
+ "startOffset": 117527,
+ "endColumn": 114,
+ "endOffset": 117637
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1557,
+ "startColumn": 4,
+ "startOffset": 118712,
+ "endColumn": 112,
+ "endOffset": 118820
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1494,
+ "startColumn": 4,
+ "startOffset": 117642,
+ "endColumn": 112,
+ "endOffset": 117750
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1558,
+ "startColumn": 4,
+ "startOffset": 118825,
+ "endColumn": 98,
+ "endOffset": 118919
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1495,
+ "startColumn": 4,
+ "startOffset": 117755,
+ "endColumn": 98,
+ "endOffset": 117849
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1559,
+ "startColumn": 4,
+ "startOffset": 118924,
+ "endColumn": 108,
+ "endOffset": 119028
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1496,
+ "startColumn": 4,
+ "startOffset": 117854,
+ "endColumn": 108,
+ "endOffset": 117958
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1560,
+ "startColumn": 4,
+ "startOffset": 119033,
+ "endColumn": 110,
+ "endOffset": 119139
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1497,
+ "startColumn": 4,
+ "startOffset": 117963,
+ "endColumn": 110,
+ "endOffset": 118069
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1561,
+ "startColumn": 4,
+ "startOffset": 119144,
+ "endColumn": 110,
+ "endOffset": 119250
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1498,
+ "startColumn": 4,
+ "startOffset": 118074,
+ "endColumn": 110,
+ "endOffset": 118180
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1562,
+ "startColumn": 4,
+ "startOffset": 119255,
+ "endColumn": 100,
+ "endOffset": 119351
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1499,
+ "startColumn": 4,
+ "startOffset": 118185,
+ "endColumn": 100,
+ "endOffset": 118281
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1563,
+ "startColumn": 4,
+ "startOffset": 119356,
+ "endColumn": 104,
+ "endOffset": 119456
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1500,
+ "startColumn": 4,
+ "startOffset": 118286,
+ "endColumn": 104,
+ "endOffset": 118386
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1564,
+ "startColumn": 4,
+ "startOffset": 119461,
+ "endLine": 1565,
+ "endColumn": 12,
+ "endOffset": 119568
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1501,
+ "startColumn": 4,
+ "startOffset": 118391,
+ "endLine": 1502,
+ "endColumn": 12,
+ "endOffset": 118498
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1566,
+ "startColumn": 4,
+ "startOffset": 119573,
+ "endLine": 1567,
+ "endColumn": 12,
+ "endOffset": 119698
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1503,
+ "startColumn": 4,
+ "startOffset": 118503,
+ "endLine": 1504,
+ "endColumn": 12,
+ "endOffset": 118628
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1568,
+ "startColumn": 4,
+ "startOffset": 119703,
+ "endColumn": 90,
+ "endOffset": 119789
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1505,
+ "startColumn": 4,
+ "startOffset": 118633,
+ "endColumn": 90,
+ "endOffset": 118719
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1569,
+ "startColumn": 4,
+ "startOffset": 119794,
+ "endColumn": 122,
+ "endOffset": 119912
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1506,
+ "startColumn": 4,
+ "startOffset": 118724,
+ "endColumn": 122,
+ "endOffset": 118842
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1570,
+ "startColumn": 4,
+ "startOffset": 119917,
+ "endLine": 1571,
+ "endColumn": 12,
+ "endOffset": 120024
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1507,
+ "startColumn": 4,
+ "startOffset": 118847,
+ "endLine": 1508,
+ "endColumn": 12,
+ "endOffset": 118954
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1572,
+ "startColumn": 4,
+ "startOffset": 120029,
+ "endColumn": 85,
+ "endOffset": 120110
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1509,
+ "startColumn": 4,
+ "startOffset": 118959,
+ "endColumn": 85,
+ "endOffset": 119040
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1573,
+ "startColumn": 4,
+ "startOffset": 120115,
+ "endColumn": 103,
+ "endOffset": 120214
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1510,
+ "startColumn": 4,
+ "startOffset": 119045,
+ "endColumn": 103,
+ "endOffset": 119144
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1574,
+ "startColumn": 4,
+ "startOffset": 120219,
+ "endLine": 1575,
+ "endColumn": 12,
+ "endOffset": 120322
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1511,
+ "startColumn": 4,
+ "startOffset": 119149,
+ "endLine": 1512,
+ "endColumn": 12,
+ "endOffset": 119252
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1576,
+ "startColumn": 4,
+ "startOffset": 120327,
+ "endLine": 1577,
+ "endColumn": 12,
+ "endOffset": 120422
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1513,
+ "startColumn": 4,
+ "startOffset": 119257,
+ "endLine": 1514,
+ "endColumn": 12,
+ "endOffset": 119352
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1578,
+ "startColumn": 4,
+ "startOffset": 120427,
+ "endLine": 1579,
+ "endColumn": 12,
+ "endOffset": 120540
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1515,
+ "startColumn": 4,
+ "startOffset": 119357,
+ "endLine": 1516,
+ "endColumn": 12,
+ "endOffset": 119470
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1580,
+ "startColumn": 4,
+ "startOffset": 120545,
+ "endLine": 1581,
+ "endColumn": 12,
+ "endOffset": 120644
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1517,
+ "startColumn": 4,
+ "startOffset": 119475,
+ "endLine": 1518,
+ "endColumn": 12,
+ "endOffset": 119574
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1582,
+ "startColumn": 4,
+ "startOffset": 120649,
+ "endLine": 1583,
+ "endColumn": 12,
+ "endOffset": 120748
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1519,
+ "startColumn": 4,
+ "startOffset": 119579,
+ "endLine": 1520,
+ "endColumn": 12,
+ "endOffset": 119678
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1584,
+ "startColumn": 4,
+ "startOffset": 120753,
+ "endLine": 1585,
+ "endColumn": 12,
+ "endOffset": 120874
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1521,
+ "startColumn": 4,
+ "startOffset": 119683,
+ "endLine": 1522,
+ "endColumn": 12,
+ "endOffset": 119804
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1586,
+ "startColumn": 4,
+ "startOffset": 120879,
+ "endColumn": 87,
+ "endOffset": 120962
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1523,
+ "startColumn": 4,
+ "startOffset": 119809,
+ "endColumn": 87,
+ "endOffset": 119892
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1587,
+ "startColumn": 4,
+ "startOffset": 120967,
+ "endColumn": 89,
+ "endOffset": 121052
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1524,
+ "startColumn": 4,
+ "startOffset": 119897,
+ "endColumn": 89,
+ "endOffset": 119982
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1588,
+ "startColumn": 4,
+ "startOffset": 121057,
+ "endColumn": 109,
+ "endOffset": 121162
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1525,
+ "startColumn": 4,
+ "startOffset": 119987,
+ "endColumn": 109,
+ "endOffset": 120092
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1589,
+ "startColumn": 4,
+ "startOffset": 121167,
+ "endColumn": 83,
+ "endOffset": 121246
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1526,
+ "startColumn": 4,
+ "startOffset": 120097,
+ "endColumn": 83,
+ "endOffset": 120176
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1590,
+ "startColumn": 4,
+ "startOffset": 121251,
+ "endColumn": 53,
+ "endOffset": 121300
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1527,
+ "startColumn": 4,
+ "startOffset": 120181,
+ "endColumn": 53,
+ "endOffset": 120230
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1591,
+ "startColumn": 4,
+ "startOffset": 121305,
+ "endColumn": 63,
+ "endOffset": 121364
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1528,
+ "startColumn": 4,
+ "startOffset": 120235,
+ "endColumn": 63,
+ "endOffset": 120294
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1592,
+ "startColumn": 4,
+ "startOffset": 121369,
+ "endColumn": 105,
+ "endOffset": 121470
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1529,
+ "startColumn": 4,
+ "startOffset": 120299,
+ "endColumn": 105,
+ "endOffset": 120400
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1593,
+ "startColumn": 4,
+ "startOffset": 121475,
+ "endColumn": 109,
+ "endOffset": 121580
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1530,
+ "startColumn": 4,
+ "startOffset": 120405,
+ "endColumn": 109,
+ "endOffset": 120510
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1594,
+ "startColumn": 4,
+ "startOffset": 121585,
+ "endColumn": 83,
+ "endOffset": 121664
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1531,
+ "startColumn": 4,
+ "startOffset": 120515,
+ "endColumn": 83,
+ "endOffset": 120594
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1595,
+ "startColumn": 4,
+ "startOffset": 121669,
+ "endColumn": 119,
+ "endOffset": 121784
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
+ "position": {
+ "startLine": 1532,
+ "startColumn": 4,
+ "startOffset": 120599,
+ "endColumn": 119,
+ "endOffset": 120714
+ }
+ }
+ },
+ {
+ "to": {
+ "startLine": 1596,
+ "startColumn": 4,
+ "startOffset": 121789,
+ "endLine": 1605,
+ "endColumn": 10,
+ "endOffset": 122225
+ },
+ "from": {
+ "file": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml",
+ "position": {
+ "startLine": 96,
+ "startColumn": 4,
+ "startOffset": 7020,
+ "endLine": 105,
+ "endColumn": 10,
+ "endOffset": 7456
+ }
+ }
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/anim.json b/android/app/build/intermediates/blame/res/debug/single/anim.json
new file mode 100644
index 00000000..acf5bbf0
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/anim.json
@@ -0,0 +1,66 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/catalyst_fade_in.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_fade_in.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_bottom.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_fade_in.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_in.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_top.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_enter.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/catalyst_fade_out.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_fade_out.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_exit.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_push_up_out.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_fade_out.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_out.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/catalyst_slide_down.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_slide_down.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_shrink_fade_out_from_bottom.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_top.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_bottom.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_grow_fade_in_from_bottom.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_push_up_in.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/catalyst_slide_up.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_slide_up.xml"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/color-v11.json b/android/app/build/intermediates/blame/res/debug/single/color-v11.json
new file mode 100644
index 00000000..bec10654
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/color-v11.json
@@ -0,0 +1,10 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/color-v23.json b/android/app/build/intermediates/blame/res/debug/single/color-v23.json
new file mode 100644
index 00000000..62f35c8f
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/color-v23.json
@@ -0,0 +1,6 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v23/abc_color_highlight_material.xml"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/color.json b/android/app/build/intermediates/blame/res/debug/single/color.json
new file mode 100644
index 00000000..5faa3de0
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/color.json
@@ -0,0 +1,38 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_light.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_light.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_dark.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_dark.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_dark.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_light.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_search_url_text.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_search_url_text.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_dark.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_light.xml"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable-hdpi.json b/android/app/build/intermediates/blame/res/debug/single/drawable-hdpi.json
new file mode 100644
index 00000000..e733afac
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable-hdpi.json
@@ -0,0 +1,154 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_focused_holo.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_focused_holo.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_longpressed_holo.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_longpressed_holo.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_light.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_light.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_dark.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_clear_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_popup_background_mtrl_mult.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi.json b/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi.json
new file mode 100644
index 00000000..1489b2ff
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi.json
@@ -0,0 +1,18 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi.json b/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi.json
new file mode 100644
index 00000000..3e3562c3
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi.json
@@ -0,0 +1,18 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi.json b/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi.json
new file mode 100644
index 00000000..5dbd666f
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi.json
@@ -0,0 +1,18 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi.json b/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi.json
new file mode 100644
index 00000000..ff545798
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi.json
@@ -0,0 +1,18 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi.json b/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi.json
new file mode 100644
index 00000000..acdb5650
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi.json
@@ -0,0 +1,18 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable-mdpi.json b/android/app/build/intermediates/blame/res/debug/single/drawable-mdpi.json
new file mode 100644
index 00000000..428e76f7
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable-mdpi.json
@@ -0,0 +1,154 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_popup_background_mtrl_mult.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_longpressed_holo.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_longpressed_holo.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_dark.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_light.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_light.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_clear_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_focused_holo.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_focused_holo.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable-v21.json b/android/app/build/intermediates/blame/res/debug/single/drawable-v21.json
new file mode 100644
index 00000000..cbf54f29
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable-v21.json
@@ -0,0 +1,10 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_btn_colored_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_action_bar_item_background_material.xml"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable-v23.json b/android/app/build/intermediates/blame/res/debug/single/drawable-v23.json
new file mode 100644
index 00000000..4022b996
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable-v23.json
@@ -0,0 +1,6 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v23/abc_control_background_material.xml"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable-xhdpi.json b/android/app/build/intermediates/blame/res/debug/single/drawable-xhdpi.json
new file mode 100644
index 00000000..33668b1e
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable-xhdpi.json
@@ -0,0 +1,154 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_dark.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_focused_holo.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_focused_holo.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_light.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_longpressed_holo.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_longpressed_holo.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable-xxhdpi.json b/android/app/build/intermediates/blame/res/debug/single/drawable-xxhdpi.json
new file mode 100644
index 00000000..b2fb09f4
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable-xxhdpi.json
@@ -0,0 +1,154 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_focused_holo.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_focused_holo.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_light.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_longpressed_holo.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable-xxxhdpi.json b/android/app/build/intermediates/blame/res/debug/single/drawable-xxxhdpi.json
new file mode 100644
index 00000000..900b9a0f
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable-xxxhdpi.json
@@ -0,0 +1,78 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/drawable.json b/android/app/build/intermediates/blame/res/debug/single/drawable.json
new file mode 100644
index 00000000..045ce752
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/drawable.json
@@ -0,0 +1,90 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_light.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_radio_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_textfield_search_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_check_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_edit_text_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_dark.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_dark.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_spinner_textfield_background_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_top_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_colored_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_switch_thumb_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_internal_bg.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_light.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_text_cursor_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_ratingbar_full_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_default_mtrl_shape.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_borderless_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_light.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_tab_indicator_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_dark.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_light.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/layout.json b/android/app/build/intermediates/blame/res/debug/single/layout.json
new file mode 100644
index 00000000..77adb55a
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/layout.json
@@ -0,0 +1,166 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_time.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_bar.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_search_view.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_view.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/redbox_view.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_view.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_icon.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_title_item.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_up_container.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_item_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media_narrow.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_toolbar.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/support_simple_spinner_dropdown_item.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_singlechoice_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view_list_item.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_item_frame.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_template_lines.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_lines.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple_overlay_action_mode.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_expanded_menu_layout.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_template_media.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_media.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_dialog_title_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_item_layout.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_multichoice_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_view_list_nav_layout.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_popup_menu_item_layout.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_media_action.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_action.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_select_dialog_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_dropdown_item_icons_2line.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_layout.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_close_item_material.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_radio.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_cancel_action.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_chronometer.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_checkbox.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/fps_view.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/fps_view.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_content_include.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/redbox_item_title.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_item_title.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/dev_loading_view.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/dev_loading_view.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_layout.xml"
+ },
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_alert_dialog_material.xml"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/mipmap-hdpi.json b/android/app/build/intermediates/blame/res/debug/single/mipmap-hdpi.json
new file mode 100644
index 00000000..ede053f3
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/mipmap-hdpi.json
@@ -0,0 +1,6 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/mipmap-hdpi/ic_launcher.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/res/mipmap-hdpi/ic_launcher.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/mipmap-mdpi.json b/android/app/build/intermediates/blame/res/debug/single/mipmap-mdpi.json
new file mode 100644
index 00000000..a25aa53e
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/mipmap-mdpi.json
@@ -0,0 +1,6 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/mipmap-mdpi/ic_launcher.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/res/mipmap-mdpi/ic_launcher.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/mipmap-xhdpi.json b/android/app/build/intermediates/blame/res/debug/single/mipmap-xhdpi.json
new file mode 100644
index 00000000..eed6093c
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/mipmap-xhdpi.json
@@ -0,0 +1,6 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/mipmap-xhdpi/ic_launcher.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/mipmap-xxhdpi.json b/android/app/build/intermediates/blame/res/debug/single/mipmap-xxhdpi.json
new file mode 100644
index 00000000..dd709187
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/mipmap-xxhdpi.json
@@ -0,0 +1,6 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/mipmap-xxhdpi/ic_launcher.png",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/blame/res/debug/single/xml.json b/android/app/build/intermediates/blame/res/debug/single/xml.json
new file mode 100644
index 00000000..44f2e785
--- /dev/null
+++ b/android/app/build/intermediates/blame/res/debug/single/xml.json
@@ -0,0 +1,6 @@
+[
+ {
+ "merged": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/xml/preferences.xml",
+ "source": "/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/xml/preferences.xml"
+ }
+]
\ No newline at end of file
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class
new file mode 100644
index 00000000..f085038c
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class differ
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class
new file mode 100644
index 00000000..d9b98662
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class differ
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class
new file mode 100644
index 00000000..c0a7800c
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class differ
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class
new file mode 100644
index 00000000..bcec0b46
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class differ
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class
new file mode 100644
index 00000000..da02ff10
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class differ
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class
new file mode 100644
index 00000000..c0eb541e
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class differ
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class
new file mode 100644
index 00000000..842d3aee
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class differ
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class
new file mode 100644
index 00000000..6174d714
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class differ
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class
new file mode 100644
index 00000000..96985f5a
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class differ
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class
new file mode 100644
index 00000000..86a444d5
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class differ
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class
new file mode 100644
index 00000000..4604c0f5
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class differ
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class
new file mode 100644
index 00000000..2ab40b7c
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class differ
diff --git a/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class
new file mode 100644
index 00000000..2c9d8664
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/drawee/R$attr.class b/android/app/build/intermediates/classes/debug/com/facebook/drawee/R$attr.class
new file mode 100644
index 00000000..b8a8b4b5
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/drawee/R$attr.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/drawee/R$id.class b/android/app/build/intermediates/classes/debug/com/facebook/drawee/R$id.class
new file mode 100644
index 00000000..0aff4b26
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/drawee/R$id.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/drawee/R$styleable.class b/android/app/build/intermediates/classes/debug/com/facebook/drawee/R$styleable.class
new file mode 100644
index 00000000..ec0a1255
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/drawee/R$styleable.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/drawee/R.class b/android/app/build/intermediates/classes/debug/com/facebook/drawee/R.class
new file mode 100644
index 00000000..fae22068
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/drawee/R.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline/R$attr.class b/android/app/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline/R$attr.class
new file mode 100644
index 00000000..a29853cd
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline/R$attr.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline/R$id.class b/android/app/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline/R$id.class
new file mode 100644
index 00000000..3608a9b3
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline/R$id.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline/R$styleable.class b/android/app/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline/R$styleable.class
new file mode 100644
index 00000000..e5eacdf9
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline/R$styleable.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline/R.class b/android/app/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline/R.class
new file mode 100644
index 00000000..2152ccec
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline/R.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/fbui/textlayoutbuilder/R$styleable.class b/android/app/build/intermediates/classes/debug/com/facebook/fbui/textlayoutbuilder/R$styleable.class
new file mode 100644
index 00000000..b05091ba
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/fbui/textlayoutbuilder/R$styleable.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/fbui/textlayoutbuilder/R.class b/android/app/build/intermediates/classes/debug/com/facebook/fbui/textlayoutbuilder/R.class
new file mode 100644
index 00000000..c555adeb
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/fbui/textlayoutbuilder/R.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$anim.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$anim.class
new file mode 100644
index 00000000..e60dc77c
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$anim.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$attr.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$attr.class
new file mode 100644
index 00000000..052f2644
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$attr.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$bool.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$bool.class
new file mode 100644
index 00000000..46e9116c
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$bool.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$color.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$color.class
new file mode 100644
index 00000000..d5c9b9fe
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$color.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$dimen.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$dimen.class
new file mode 100644
index 00000000..e07e2f6a
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$dimen.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$drawable.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$drawable.class
new file mode 100644
index 00000000..f6cc284e
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$drawable.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$id.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$id.class
new file mode 100644
index 00000000..702a39dd
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$id.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$integer.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$integer.class
new file mode 100644
index 00000000..2ff89244
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$integer.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$layout.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$layout.class
new file mode 100644
index 00000000..fd8b7c46
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$layout.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$string.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$string.class
new file mode 100644
index 00000000..08e333ec
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$string.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$style.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$style.class
new file mode 100644
index 00000000..cc627c92
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$style.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$styleable.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$styleable.class
new file mode 100644
index 00000000..10d6c29c
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$styleable.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R$xml.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R$xml.class
new file mode 100644
index 00000000..7944f775
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R$xml.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/react/R.class b/android/app/build/intermediates/classes/debug/com/facebook/react/R.class
new file mode 100644
index 00000000..d1ff64b4
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/react/R.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/facebook/soloader/R.class b/android/app/build/intermediates/classes/debug/com/facebook/soloader/R.class
new file mode 100644
index 00000000..893d50bc
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/facebook/soloader/R.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/BuildConfig.class b/android/app/build/intermediates/classes/debug/com/rntest/BuildConfig.class
new file mode 100644
index 00000000..b593842a
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/BuildConfig.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/MainActivity.class b/android/app/build/intermediates/classes/debug/com/rntest/MainActivity.class
new file mode 100644
index 00000000..52d70f7b
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/MainActivity.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/MainApplication$1.class b/android/app/build/intermediates/classes/debug/com/rntest/MainApplication$1.class
new file mode 100644
index 00000000..9900abf5
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/MainApplication$1.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/MainApplication.class b/android/app/build/intermediates/classes/debug/com/rntest/MainApplication.class
new file mode 100644
index 00000000..c484424a
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/MainApplication.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$anim.class b/android/app/build/intermediates/classes/debug/com/rntest/R$anim.class
new file mode 100644
index 00000000..4db39c54
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$anim.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$attr.class b/android/app/build/intermediates/classes/debug/com/rntest/R$attr.class
new file mode 100644
index 00000000..350e7bff
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$attr.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$bool.class b/android/app/build/intermediates/classes/debug/com/rntest/R$bool.class
new file mode 100644
index 00000000..849b34fa
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$bool.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$color.class b/android/app/build/intermediates/classes/debug/com/rntest/R$color.class
new file mode 100644
index 00000000..2f9a3155
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$color.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$dimen.class b/android/app/build/intermediates/classes/debug/com/rntest/R$dimen.class
new file mode 100644
index 00000000..7cfacc18
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$dimen.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$drawable.class b/android/app/build/intermediates/classes/debug/com/rntest/R$drawable.class
new file mode 100644
index 00000000..ee91bd3b
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$drawable.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$id.class b/android/app/build/intermediates/classes/debug/com/rntest/R$id.class
new file mode 100644
index 00000000..9c4e5a20
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$id.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$integer.class b/android/app/build/intermediates/classes/debug/com/rntest/R$integer.class
new file mode 100644
index 00000000..f320ca96
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$integer.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$layout.class b/android/app/build/intermediates/classes/debug/com/rntest/R$layout.class
new file mode 100644
index 00000000..8491ce09
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$layout.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$mipmap.class b/android/app/build/intermediates/classes/debug/com/rntest/R$mipmap.class
new file mode 100644
index 00000000..64833b2c
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$mipmap.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$string.class b/android/app/build/intermediates/classes/debug/com/rntest/R$string.class
new file mode 100644
index 00000000..5b002851
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$string.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$style.class b/android/app/build/intermediates/classes/debug/com/rntest/R$style.class
new file mode 100644
index 00000000..318ab323
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$style.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$styleable.class b/android/app/build/intermediates/classes/debug/com/rntest/R$styleable.class
new file mode 100644
index 00000000..947b9cc5
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$styleable.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R$xml.class b/android/app/build/intermediates/classes/debug/com/rntest/R$xml.class
new file mode 100644
index 00000000..945ce202
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R$xml.class differ
diff --git a/android/app/build/intermediates/classes/debug/com/rntest/R.class b/android/app/build/intermediates/classes/debug/com/rntest/R.class
new file mode 100644
index 00000000..a84e6c35
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/com/rntest/R.class differ
diff --git a/android/app/build/intermediates/classes/debug/org/webkit/android_jsc/R.class b/android/app/build/intermediates/classes/debug/org/webkit/android_jsc/R.class
new file mode 100644
index 00000000..67007f23
Binary files /dev/null and b/android/app/build/intermediates/classes/debug/org/webkit/android_jsc/R.class differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/AndroidManifest.xml
new file mode 100644
index 00000000..58122b1d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/R.txt b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/R.txt
new file mode 100644
index 00000000..e9dd43d6
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/R.txt
@@ -0,0 +1,1188 @@
+int anim abc_fade_in 0x7f040000
+int anim abc_fade_out 0x7f040001
+int anim abc_grow_fade_in_from_bottom 0x7f040002
+int anim abc_popup_enter 0x7f040003
+int anim abc_popup_exit 0x7f040004
+int anim abc_shrink_fade_out_from_bottom 0x7f040005
+int anim abc_slide_in_bottom 0x7f040006
+int anim abc_slide_in_top 0x7f040007
+int anim abc_slide_out_bottom 0x7f040008
+int anim abc_slide_out_top 0x7f040009
+int attr actionBarDivider 0x7f010062
+int attr actionBarItemBackground 0x7f010063
+int attr actionBarPopupTheme 0x7f01005c
+int attr actionBarSize 0x7f010061
+int attr actionBarSplitStyle 0x7f01005e
+int attr actionBarStyle 0x7f01005d
+int attr actionBarTabBarStyle 0x7f010058
+int attr actionBarTabStyle 0x7f010057
+int attr actionBarTabTextStyle 0x7f010059
+int attr actionBarTheme 0x7f01005f
+int attr actionBarWidgetTheme 0x7f010060
+int attr actionButtonStyle 0x7f01007c
+int attr actionDropDownStyle 0x7f010078
+int attr actionLayout 0x7f010033
+int attr actionMenuTextAppearance 0x7f010064
+int attr actionMenuTextColor 0x7f010065
+int attr actionModeBackground 0x7f010068
+int attr actionModeCloseButtonStyle 0x7f010067
+int attr actionModeCloseDrawable 0x7f01006a
+int attr actionModeCopyDrawable 0x7f01006c
+int attr actionModeCutDrawable 0x7f01006b
+int attr actionModeFindDrawable 0x7f010070
+int attr actionModePasteDrawable 0x7f01006d
+int attr actionModePopupWindowStyle 0x7f010072
+int attr actionModeSelectAllDrawable 0x7f01006e
+int attr actionModeShareDrawable 0x7f01006f
+int attr actionModeSplitBackground 0x7f010069
+int attr actionModeStyle 0x7f010066
+int attr actionModeWebSearchDrawable 0x7f010071
+int attr actionOverflowButtonStyle 0x7f01005a
+int attr actionOverflowMenuStyle 0x7f01005b
+int attr actionProviderClass 0x7f010035
+int attr actionViewClass 0x7f010034
+int attr activityChooserViewStyle 0x7f010084
+int attr alertDialogButtonGroupStyle 0x7f0100a6
+int attr alertDialogCenterButtons 0x7f0100a7
+int attr alertDialogStyle 0x7f0100a5
+int attr alertDialogTheme 0x7f0100a8
+int attr arrowHeadLength 0x7f01002b
+int attr arrowShaftLength 0x7f01002c
+int attr autoCompleteTextViewStyle 0x7f0100ad
+int attr background 0x7f01000c
+int attr backgroundSplit 0x7f01000e
+int attr backgroundStacked 0x7f01000d
+int attr backgroundTint 0x7f0100c9
+int attr backgroundTintMode 0x7f0100ca
+int attr barLength 0x7f01002d
+int attr borderlessButtonStyle 0x7f010081
+int attr buttonBarButtonStyle 0x7f01007e
+int attr buttonBarNegativeButtonStyle 0x7f0100ab
+int attr buttonBarNeutralButtonStyle 0x7f0100ac
+int attr buttonBarPositiveButtonStyle 0x7f0100aa
+int attr buttonBarStyle 0x7f01007d
+int attr buttonPanelSideLayout 0x7f01001f
+int attr buttonStyle 0x7f0100ae
+int attr buttonStyleSmall 0x7f0100af
+int attr buttonTint 0x7f010025
+int attr buttonTintMode 0x7f010026
+int attr checkboxStyle 0x7f0100b0
+int attr checkedTextViewStyle 0x7f0100b1
+int attr closeIcon 0x7f01003d
+int attr closeItemLayout 0x7f01001c
+int attr collapseContentDescription 0x7f0100c0
+int attr collapseIcon 0x7f0100bf
+int attr color 0x7f010027
+int attr colorAccent 0x7f01009e
+int attr colorButtonNormal 0x7f0100a2
+int attr colorControlActivated 0x7f0100a0
+int attr colorControlHighlight 0x7f0100a1
+int attr colorControlNormal 0x7f01009f
+int attr colorPrimary 0x7f01009c
+int attr colorPrimaryDark 0x7f01009d
+int attr colorSwitchThumbNormal 0x7f0100a3
+int attr commitIcon 0x7f010042
+int attr contentInsetEnd 0x7f010017
+int attr contentInsetLeft 0x7f010018
+int attr contentInsetRight 0x7f010019
+int attr contentInsetStart 0x7f010016
+int attr controlBackground 0x7f0100a4
+int attr customNavigationLayout 0x7f01000f
+int attr defaultQueryHint 0x7f01003c
+int attr dialogPreferredPadding 0x7f010076
+int attr dialogTheme 0x7f010075
+int attr displayOptions 0x7f010005
+int attr divider 0x7f01000b
+int attr dividerHorizontal 0x7f010083
+int attr dividerPadding 0x7f010031
+int attr dividerVertical 0x7f010082
+int attr drawableSize 0x7f010029
+int attr drawerArrowStyle 0x7f010000
+int attr dropDownListViewStyle 0x7f010094
+int attr dropdownListPreferredItemHeight 0x7f010079
+int attr editTextBackground 0x7f01008a
+int attr editTextColor 0x7f010089
+int attr editTextStyle 0x7f0100b2
+int attr elevation 0x7f01001a
+int attr expandActivityOverflowButtonDrawable 0x7f01001e
+int attr gapBetweenBars 0x7f01002a
+int attr goIcon 0x7f01003e
+int attr height 0x7f010001
+int attr hideOnContentScroll 0x7f010015
+int attr homeAsUpIndicator 0x7f01007b
+int attr homeLayout 0x7f010010
+int attr icon 0x7f010009
+int attr iconifiedByDefault 0x7f01003a
+int attr indeterminateProgressStyle 0x7f010012
+int attr initialActivityCount 0x7f01001d
+int attr isLightTheme 0x7f010002
+int attr itemPadding 0x7f010014
+int attr layout 0x7f010039
+int attr listChoiceBackgroundIndicator 0x7f01009b
+int attr listDividerAlertDialog 0x7f010077
+int attr listItemLayout 0x7f010023
+int attr listLayout 0x7f010020
+int attr listPopupWindowStyle 0x7f010095
+int attr listPreferredItemHeight 0x7f01008f
+int attr listPreferredItemHeightLarge 0x7f010091
+int attr listPreferredItemHeightSmall 0x7f010090
+int attr listPreferredItemPaddingLeft 0x7f010092
+int attr listPreferredItemPaddingRight 0x7f010093
+int attr logo 0x7f01000a
+int attr logoDescription 0x7f0100c3
+int attr maxButtonHeight 0x7f0100be
+int attr measureWithLargestChild 0x7f01002f
+int attr multiChoiceItemLayout 0x7f010021
+int attr navigationContentDescription 0x7f0100c2
+int attr navigationIcon 0x7f0100c1
+int attr navigationMode 0x7f010004
+int attr overlapAnchor 0x7f010037
+int attr paddingEnd 0x7f0100c7
+int attr paddingStart 0x7f0100c6
+int attr panelBackground 0x7f010098
+int attr panelMenuListTheme 0x7f01009a
+int attr panelMenuListWidth 0x7f010099
+int attr popupMenuStyle 0x7f010087
+int attr popupTheme 0x7f01001b
+int attr popupWindowStyle 0x7f010088
+int attr preserveIconSpacing 0x7f010036
+int attr progressBarPadding 0x7f010013
+int attr progressBarStyle 0x7f010011
+int attr queryBackground 0x7f010044
+int attr queryHint 0x7f01003b
+int attr radioButtonStyle 0x7f0100b3
+int attr ratingBarStyle 0x7f0100b4
+int attr searchHintIcon 0x7f010040
+int attr searchIcon 0x7f01003f
+int attr searchViewStyle 0x7f01008e
+int attr selectableItemBackground 0x7f01007f
+int attr selectableItemBackgroundBorderless 0x7f010080
+int attr showAsAction 0x7f010032
+int attr showDividers 0x7f010030
+int attr showText 0x7f01004c
+int attr singleChoiceItemLayout 0x7f010022
+int attr spinBars 0x7f010028
+int attr spinnerDropDownItemStyle 0x7f01007a
+int attr spinnerStyle 0x7f0100b5
+int attr splitTrack 0x7f01004b
+int attr state_above_anchor 0x7f010038
+int attr submitBackground 0x7f010045
+int attr subtitle 0x7f010006
+int attr subtitleTextAppearance 0x7f0100b8
+int attr subtitleTextColor 0x7f0100c5
+int attr subtitleTextStyle 0x7f010008
+int attr suggestionRowLayout 0x7f010043
+int attr switchMinWidth 0x7f010049
+int attr switchPadding 0x7f01004a
+int attr switchStyle 0x7f0100b6
+int attr switchTextAppearance 0x7f010048
+int attr textAllCaps 0x7f010024
+int attr textAppearanceLargePopupMenu 0x7f010073
+int attr textAppearanceListItem 0x7f010096
+int attr textAppearanceListItemSmall 0x7f010097
+int attr textAppearanceSearchResultSubtitle 0x7f01008c
+int attr textAppearanceSearchResultTitle 0x7f01008b
+int attr textAppearanceSmallPopupMenu 0x7f010074
+int attr textColorAlertDialogListItem 0x7f0100a9
+int attr textColorSearchUrl 0x7f01008d
+int attr theme 0x7f0100c8
+int attr thickness 0x7f01002e
+int attr thumbTextPadding 0x7f010047
+int attr title 0x7f010003
+int attr titleMarginBottom 0x7f0100bd
+int attr titleMarginEnd 0x7f0100bb
+int attr titleMarginStart 0x7f0100ba
+int attr titleMarginTop 0x7f0100bc
+int attr titleMargins 0x7f0100b9
+int attr titleTextAppearance 0x7f0100b7
+int attr titleTextColor 0x7f0100c4
+int attr titleTextStyle 0x7f010007
+int attr toolbarNavigationButtonStyle 0x7f010086
+int attr toolbarStyle 0x7f010085
+int attr track 0x7f010046
+int attr voiceIcon 0x7f010041
+int attr windowActionBar 0x7f01004d
+int attr windowActionBarOverlay 0x7f01004f
+int attr windowActionModeOverlay 0x7f010050
+int attr windowFixedHeightMajor 0x7f010054
+int attr windowFixedHeightMinor 0x7f010052
+int attr windowFixedWidthMajor 0x7f010051
+int attr windowFixedWidthMinor 0x7f010053
+int attr windowMinWidthMajor 0x7f010055
+int attr windowMinWidthMinor 0x7f010056
+int attr windowNoTitle 0x7f01004e
+int bool abc_action_bar_embed_tabs 0x7f080002
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f080000
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f080003
+int bool abc_config_actionMenuItemAllCaps 0x7f080004
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f080001
+int bool abc_config_closeDialogWhenTouchOutside 0x7f080005
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f080006
+int color abc_background_cache_hint_selector_material_dark 0x7f0a003a
+int color abc_background_cache_hint_selector_material_light 0x7f0a003b
+int color abc_color_highlight_material 0x7f0a003c
+int color abc_input_method_navigation_guard 0x7f0a0000
+int color abc_primary_text_disable_only_material_dark 0x7f0a003d
+int color abc_primary_text_disable_only_material_light 0x7f0a003e
+int color abc_primary_text_material_dark 0x7f0a003f
+int color abc_primary_text_material_light 0x7f0a0040
+int color abc_search_url_text 0x7f0a0041
+int color abc_search_url_text_normal 0x7f0a0001
+int color abc_search_url_text_pressed 0x7f0a0002
+int color abc_search_url_text_selected 0x7f0a0003
+int color abc_secondary_text_material_dark 0x7f0a0042
+int color abc_secondary_text_material_light 0x7f0a0043
+int color accent_material_dark 0x7f0a0004
+int color accent_material_light 0x7f0a0005
+int color background_floating_material_dark 0x7f0a0006
+int color background_floating_material_light 0x7f0a0007
+int color background_material_dark 0x7f0a0008
+int color background_material_light 0x7f0a0009
+int color bright_foreground_disabled_material_dark 0x7f0a000a
+int color bright_foreground_disabled_material_light 0x7f0a000b
+int color bright_foreground_inverse_material_dark 0x7f0a000c
+int color bright_foreground_inverse_material_light 0x7f0a000d
+int color bright_foreground_material_dark 0x7f0a000e
+int color bright_foreground_material_light 0x7f0a000f
+int color button_material_dark 0x7f0a0010
+int color button_material_light 0x7f0a0011
+int color dim_foreground_disabled_material_dark 0x7f0a0012
+int color dim_foreground_disabled_material_light 0x7f0a0013
+int color dim_foreground_material_dark 0x7f0a0014
+int color dim_foreground_material_light 0x7f0a0015
+int color foreground_material_dark 0x7f0a0016
+int color foreground_material_light 0x7f0a0017
+int color highlighted_text_material_dark 0x7f0a0018
+int color highlighted_text_material_light 0x7f0a0019
+int color hint_foreground_material_dark 0x7f0a001a
+int color hint_foreground_material_light 0x7f0a001b
+int color material_blue_grey_800 0x7f0a001c
+int color material_blue_grey_900 0x7f0a001d
+int color material_blue_grey_950 0x7f0a001e
+int color material_deep_teal_200 0x7f0a001f
+int color material_deep_teal_500 0x7f0a0020
+int color material_grey_100 0x7f0a0021
+int color material_grey_300 0x7f0a0022
+int color material_grey_50 0x7f0a0023
+int color material_grey_600 0x7f0a0024
+int color material_grey_800 0x7f0a0025
+int color material_grey_850 0x7f0a0026
+int color material_grey_900 0x7f0a0027
+int color primary_dark_material_dark 0x7f0a0028
+int color primary_dark_material_light 0x7f0a0029
+int color primary_material_dark 0x7f0a002a
+int color primary_material_light 0x7f0a002b
+int color primary_text_default_material_dark 0x7f0a002c
+int color primary_text_default_material_light 0x7f0a002d
+int color primary_text_disabled_material_dark 0x7f0a002e
+int color primary_text_disabled_material_light 0x7f0a002f
+int color ripple_material_dark 0x7f0a0030
+int color ripple_material_light 0x7f0a0031
+int color secondary_text_default_material_dark 0x7f0a0032
+int color secondary_text_default_material_light 0x7f0a0033
+int color secondary_text_disabled_material_dark 0x7f0a0034
+int color secondary_text_disabled_material_light 0x7f0a0035
+int color switch_thumb_disabled_material_dark 0x7f0a0036
+int color switch_thumb_disabled_material_light 0x7f0a0037
+int color switch_thumb_material_dark 0x7f0a0044
+int color switch_thumb_material_light 0x7f0a0045
+int color switch_thumb_normal_material_dark 0x7f0a0038
+int color switch_thumb_normal_material_light 0x7f0a0039
+int dimen abc_action_bar_content_inset_material 0x7f06000b
+int dimen abc_action_bar_default_height_material 0x7f060001
+int dimen abc_action_bar_default_padding_end_material 0x7f06000c
+int dimen abc_action_bar_default_padding_start_material 0x7f06000d
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f06000f
+int dimen abc_action_bar_overflow_padding_end_material 0x7f060010
+int dimen abc_action_bar_overflow_padding_start_material 0x7f060011
+int dimen abc_action_bar_progress_bar_size 0x7f060002
+int dimen abc_action_bar_stacked_max_height 0x7f060012
+int dimen abc_action_bar_stacked_tab_max_width 0x7f060013
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f060014
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f060015
+int dimen abc_action_button_min_height_material 0x7f060016
+int dimen abc_action_button_min_width_material 0x7f060017
+int dimen abc_action_button_min_width_overflow_material 0x7f060018
+int dimen abc_alert_dialog_button_bar_height 0x7f060000
+int dimen abc_button_inset_horizontal_material 0x7f060019
+int dimen abc_button_inset_vertical_material 0x7f06001a
+int dimen abc_button_padding_horizontal_material 0x7f06001b
+int dimen abc_button_padding_vertical_material 0x7f06001c
+int dimen abc_config_prefDialogWidth 0x7f060005
+int dimen abc_control_corner_material 0x7f06001d
+int dimen abc_control_inset_material 0x7f06001e
+int dimen abc_control_padding_material 0x7f06001f
+int dimen abc_dialog_list_padding_vertical_material 0x7f060020
+int dimen abc_dialog_min_width_major 0x7f060021
+int dimen abc_dialog_min_width_minor 0x7f060022
+int dimen abc_dialog_padding_material 0x7f060023
+int dimen abc_dialog_padding_top_material 0x7f060024
+int dimen abc_disabled_alpha_material_dark 0x7f060025
+int dimen abc_disabled_alpha_material_light 0x7f060026
+int dimen abc_dropdownitem_icon_width 0x7f060027
+int dimen abc_dropdownitem_text_padding_left 0x7f060028
+int dimen abc_dropdownitem_text_padding_right 0x7f060029
+int dimen abc_edit_text_inset_bottom_material 0x7f06002a
+int dimen abc_edit_text_inset_horizontal_material 0x7f06002b
+int dimen abc_edit_text_inset_top_material 0x7f06002c
+int dimen abc_floating_window_z 0x7f06002d
+int dimen abc_list_item_padding_horizontal_material 0x7f06002e
+int dimen abc_panel_menu_list_width 0x7f06002f
+int dimen abc_search_view_preferred_width 0x7f060030
+int dimen abc_search_view_text_min_width 0x7f060006
+int dimen abc_switch_padding 0x7f06000e
+int dimen abc_text_size_body_1_material 0x7f060031
+int dimen abc_text_size_body_2_material 0x7f060032
+int dimen abc_text_size_button_material 0x7f060033
+int dimen abc_text_size_caption_material 0x7f060034
+int dimen abc_text_size_display_1_material 0x7f060035
+int dimen abc_text_size_display_2_material 0x7f060036
+int dimen abc_text_size_display_3_material 0x7f060037
+int dimen abc_text_size_display_4_material 0x7f060038
+int dimen abc_text_size_headline_material 0x7f060039
+int dimen abc_text_size_large_material 0x7f06003a
+int dimen abc_text_size_medium_material 0x7f06003b
+int dimen abc_text_size_menu_material 0x7f06003c
+int dimen abc_text_size_small_material 0x7f06003d
+int dimen abc_text_size_subhead_material 0x7f06003e
+int dimen abc_text_size_subtitle_material_toolbar 0x7f060003
+int dimen abc_text_size_title_material 0x7f06003f
+int dimen abc_text_size_title_material_toolbar 0x7f060004
+int dimen dialog_fixed_height_major 0x7f060007
+int dimen dialog_fixed_height_minor 0x7f060008
+int dimen dialog_fixed_width_major 0x7f060009
+int dimen dialog_fixed_width_minor 0x7f06000a
+int dimen disabled_alpha_material_dark 0x7f060040
+int dimen disabled_alpha_material_light 0x7f060041
+int dimen highlight_alpha_material_colored 0x7f060042
+int dimen highlight_alpha_material_dark 0x7f060043
+int dimen highlight_alpha_material_light 0x7f060044
+int dimen notification_large_icon_height 0x7f060045
+int dimen notification_large_icon_width 0x7f060046
+int dimen notification_subtext_size 0x7f060047
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
+int drawable abc_action_bar_item_background_material 0x7f020001
+int drawable abc_btn_borderless_material 0x7f020002
+int drawable abc_btn_check_material 0x7f020003
+int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
+int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
+int drawable abc_btn_colored_material 0x7f020006
+int drawable abc_btn_default_mtrl_shape 0x7f020007
+int drawable abc_btn_radio_material 0x7f020008
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
+int drawable abc_cab_background_internal_bg 0x7f02000f
+int drawable abc_cab_background_top_material 0x7f020010
+int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
+int drawable abc_control_background_material 0x7f020012
+int drawable abc_dialog_material_background_dark 0x7f020013
+int drawable abc_dialog_material_background_light 0x7f020014
+int drawable abc_edit_text_material 0x7f020015
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
+int drawable abc_ic_clear_mtrl_alpha 0x7f020017
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
+int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020021
+int drawable abc_item_background_holo_dark 0x7f020022
+int drawable abc_item_background_holo_light 0x7f020023
+int drawable abc_list_divider_mtrl_alpha 0x7f020024
+int drawable abc_list_focused_holo 0x7f020025
+int drawable abc_list_longpressed_holo 0x7f020026
+int drawable abc_list_pressed_holo_dark 0x7f020027
+int drawable abc_list_pressed_holo_light 0x7f020028
+int drawable abc_list_selector_background_transition_holo_dark 0x7f020029
+int drawable abc_list_selector_background_transition_holo_light 0x7f02002a
+int drawable abc_list_selector_disabled_holo_dark 0x7f02002b
+int drawable abc_list_selector_disabled_holo_light 0x7f02002c
+int drawable abc_list_selector_holo_dark 0x7f02002d
+int drawable abc_list_selector_holo_light 0x7f02002e
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002f
+int drawable abc_popup_background_mtrl_mult 0x7f020030
+int drawable abc_ratingbar_full_material 0x7f020031
+int drawable abc_spinner_mtrl_am_alpha 0x7f020032
+int drawable abc_spinner_textfield_background_material 0x7f020033
+int drawable abc_switch_thumb_material 0x7f020034
+int drawable abc_switch_track_mtrl_alpha 0x7f020035
+int drawable abc_tab_indicator_material 0x7f020036
+int drawable abc_tab_indicator_mtrl_alpha 0x7f020037
+int drawable abc_text_cursor_material 0x7f020038
+int drawable abc_textfield_activated_mtrl_alpha 0x7f020039
+int drawable abc_textfield_default_mtrl_alpha 0x7f02003a
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f02003b
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f02003c
+int drawable abc_textfield_search_material 0x7f02003d
+int drawable notification_template_icon_bg 0x7f02003e
+int id action0 0x7f0b004d
+int id action_bar 0x7f0b003e
+int id action_bar_activity_content 0x7f0b0000
+int id action_bar_container 0x7f0b003d
+int id action_bar_root 0x7f0b0039
+int id action_bar_spinner 0x7f0b0001
+int id action_bar_subtitle 0x7f0b0022
+int id action_bar_title 0x7f0b0021
+int id action_context_bar 0x7f0b003f
+int id action_divider 0x7f0b0051
+int id action_menu_divider 0x7f0b0002
+int id action_menu_presenter 0x7f0b0003
+int id action_mode_bar 0x7f0b003b
+int id action_mode_bar_stub 0x7f0b003a
+int id action_mode_close_button 0x7f0b0023
+int id activity_chooser_view_content 0x7f0b0024
+int id alertTitle 0x7f0b002e
+int id always 0x7f0b001b
+int id beginning 0x7f0b0018
+int id buttonPanel 0x7f0b0034
+int id cancel_action 0x7f0b004e
+int id checkbox 0x7f0b0036
+int id chronometer 0x7f0b0054
+int id collapseActionView 0x7f0b001c
+int id contentPanel 0x7f0b002f
+int id custom 0x7f0b0033
+int id customPanel 0x7f0b0032
+int id decor_content_parent 0x7f0b003c
+int id default_activity_button 0x7f0b0027
+int id disableHome 0x7f0b000c
+int id edit_query 0x7f0b0040
+int id end 0x7f0b0019
+int id end_padder 0x7f0b0059
+int id expand_activities_button 0x7f0b0025
+int id expanded_menu 0x7f0b0035
+int id home 0x7f0b0004
+int id homeAsUp 0x7f0b000d
+int id icon 0x7f0b0029
+int id ifRoom 0x7f0b001d
+int id image 0x7f0b0026
+int id info 0x7f0b0058
+int id line1 0x7f0b0052
+int id line3 0x7f0b0056
+int id listMode 0x7f0b0009
+int id list_item 0x7f0b0028
+int id media_actions 0x7f0b0050
+int id middle 0x7f0b001a
+int id multiply 0x7f0b0013
+int id never 0x7f0b001e
+int id none 0x7f0b000e
+int id normal 0x7f0b000a
+int id parentPanel 0x7f0b002b
+int id progress_circular 0x7f0b0005
+int id progress_horizontal 0x7f0b0006
+int id radio 0x7f0b0038
+int id screen 0x7f0b0014
+int id scrollView 0x7f0b0030
+int id search_badge 0x7f0b0042
+int id search_bar 0x7f0b0041
+int id search_button 0x7f0b0043
+int id search_close_btn 0x7f0b0048
+int id search_edit_frame 0x7f0b0044
+int id search_go_btn 0x7f0b004a
+int id search_mag_icon 0x7f0b0045
+int id search_plate 0x7f0b0046
+int id search_src_text 0x7f0b0047
+int id search_voice_btn 0x7f0b004b
+int id select_dialog_listview 0x7f0b004c
+int id shortcut 0x7f0b0037
+int id showCustom 0x7f0b000f
+int id showHome 0x7f0b0010
+int id showTitle 0x7f0b0011
+int id split_action_bar 0x7f0b0007
+int id src_atop 0x7f0b0015
+int id src_in 0x7f0b0016
+int id src_over 0x7f0b0017
+int id status_bar_latest_event_content 0x7f0b004f
+int id submit_area 0x7f0b0049
+int id tabMode 0x7f0b000b
+int id text 0x7f0b0057
+int id text2 0x7f0b0055
+int id textSpacerNoButtons 0x7f0b0031
+int id time 0x7f0b0053
+int id title 0x7f0b002a
+int id title_template 0x7f0b002d
+int id topPanel 0x7f0b002c
+int id up 0x7f0b0008
+int id useLogo 0x7f0b0012
+int id withText 0x7f0b001f
+int id wrap_content 0x7f0b0020
+int integer abc_config_activityDefaultDur 0x7f090001
+int integer abc_config_activityShortDur 0x7f090002
+int integer abc_max_action_buttons 0x7f090000
+int integer cancel_button_image_alpha 0x7f090003
+int integer status_bar_notification_info_maxnum 0x7f090004
+int layout abc_action_bar_title_item 0x7f030000
+int layout abc_action_bar_up_container 0x7f030001
+int layout abc_action_bar_view_list_nav_layout 0x7f030002
+int layout abc_action_menu_item_layout 0x7f030003
+int layout abc_action_menu_layout 0x7f030004
+int layout abc_action_mode_bar 0x7f030005
+int layout abc_action_mode_close_item_material 0x7f030006
+int layout abc_activity_chooser_view 0x7f030007
+int layout abc_activity_chooser_view_list_item 0x7f030008
+int layout abc_alert_dialog_material 0x7f030009
+int layout abc_dialog_title_material 0x7f03000a
+int layout abc_expanded_menu_layout 0x7f03000b
+int layout abc_list_menu_item_checkbox 0x7f03000c
+int layout abc_list_menu_item_icon 0x7f03000d
+int layout abc_list_menu_item_layout 0x7f03000e
+int layout abc_list_menu_item_radio 0x7f03000f
+int layout abc_popup_menu_item_layout 0x7f030010
+int layout abc_screen_content_include 0x7f030011
+int layout abc_screen_simple 0x7f030012
+int layout abc_screen_simple_overlay_action_mode 0x7f030013
+int layout abc_screen_toolbar 0x7f030014
+int layout abc_search_dropdown_item_icons_2line 0x7f030015
+int layout abc_search_view 0x7f030016
+int layout abc_select_dialog_material 0x7f030017
+int layout notification_media_action 0x7f030018
+int layout notification_media_cancel_action 0x7f030019
+int layout notification_template_big_media 0x7f03001a
+int layout notification_template_big_media_narrow 0x7f03001b
+int layout notification_template_lines 0x7f03001c
+int layout notification_template_media 0x7f03001d
+int layout notification_template_part_chronometer 0x7f03001e
+int layout notification_template_part_time 0x7f03001f
+int layout select_dialog_item_material 0x7f030020
+int layout select_dialog_multichoice_material 0x7f030021
+int layout select_dialog_singlechoice_material 0x7f030022
+int layout support_simple_spinner_dropdown_item 0x7f030023
+int string abc_action_bar_home_description 0x7f050000
+int string abc_action_bar_home_description_format 0x7f050001
+int string abc_action_bar_home_subtitle_description_format 0x7f050002
+int string abc_action_bar_up_description 0x7f050003
+int string abc_action_menu_overflow_description 0x7f050004
+int string abc_action_mode_done 0x7f050005
+int string abc_activity_chooser_view_see_all 0x7f050006
+int string abc_activitychooserview_choose_application 0x7f050007
+int string abc_search_hint 0x7f050008
+int string abc_searchview_description_clear 0x7f050009
+int string abc_searchview_description_query 0x7f05000a
+int string abc_searchview_description_search 0x7f05000b
+int string abc_searchview_description_submit 0x7f05000c
+int string abc_searchview_description_voice 0x7f05000d
+int string abc_shareactionprovider_share_with 0x7f05000e
+int string abc_shareactionprovider_share_with_application 0x7f05000f
+int string abc_toolbar_collapse_description 0x7f050010
+int string status_bar_notification_info_overflow 0x7f050011
+int style AlertDialog_AppCompat 0x7f07007a
+int style AlertDialog_AppCompat_Light 0x7f07007b
+int style Animation_AppCompat_Dialog 0x7f07007c
+int style Animation_AppCompat_DropDownUp 0x7f07007d
+int style Base_AlertDialog_AppCompat 0x7f07007e
+int style Base_AlertDialog_AppCompat_Light 0x7f07007f
+int style Base_Animation_AppCompat_Dialog 0x7f070080
+int style Base_Animation_AppCompat_DropDownUp 0x7f070081
+int style Base_DialogWindowTitle_AppCompat 0x7f070082
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f070083
+int style Base_TextAppearance_AppCompat 0x7f07002d
+int style Base_TextAppearance_AppCompat_Body1 0x7f07002e
+int style Base_TextAppearance_AppCompat_Body2 0x7f07002f
+int style Base_TextAppearance_AppCompat_Button 0x7f070018
+int style Base_TextAppearance_AppCompat_Caption 0x7f070030
+int style Base_TextAppearance_AppCompat_Display1 0x7f070031
+int style Base_TextAppearance_AppCompat_Display2 0x7f070032
+int style Base_TextAppearance_AppCompat_Display3 0x7f070033
+int style Base_TextAppearance_AppCompat_Display4 0x7f070034
+int style Base_TextAppearance_AppCompat_Headline 0x7f070035
+int style Base_TextAppearance_AppCompat_Inverse 0x7f070003
+int style Base_TextAppearance_AppCompat_Large 0x7f070036
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f070004
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f070037
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f070038
+int style Base_TextAppearance_AppCompat_Medium 0x7f070039
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f070005
+int style Base_TextAppearance_AppCompat_Menu 0x7f07003a
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f070084
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f07003b
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f07003c
+int style Base_TextAppearance_AppCompat_Small 0x7f07003d
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f070006
+int style Base_TextAppearance_AppCompat_Subhead 0x7f07003e
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f070007
+int style Base_TextAppearance_AppCompat_Title 0x7f07003f
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f070008
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f070040
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f070041
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f070042
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f070043
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f070044
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f070045
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f070046
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f070047
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f070076
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f070085
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f070048
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f070049
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f07004a
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f07004b
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f070086
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f07004c
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f07004d
+int style Base_Theme_AppCompat 0x7f07004e
+int style Base_Theme_AppCompat_CompactMenu 0x7f070087
+int style Base_Theme_AppCompat_Dialog 0x7f070009
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f070088
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f070089
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f07008a
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f070001
+int style Base_Theme_AppCompat_Light 0x7f07004f
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f07008b
+int style Base_Theme_AppCompat_Light_Dialog 0x7f07000a
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f07008c
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f07008d
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f07008e
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f070002
+int style Base_ThemeOverlay_AppCompat 0x7f07008f
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f070090
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f070091
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f070092
+int style Base_ThemeOverlay_AppCompat_Light 0x7f070093
+int style Base_V11_Theme_AppCompat_Dialog 0x7f07000b
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f07000c
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f070014
+int style Base_V12_Widget_AppCompat_EditText 0x7f070015
+int style Base_V21_Theme_AppCompat 0x7f070050
+int style Base_V21_Theme_AppCompat_Dialog 0x7f070051
+int style Base_V21_Theme_AppCompat_Light 0x7f070052
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f070053
+int style Base_V22_Theme_AppCompat 0x7f070074
+int style Base_V22_Theme_AppCompat_Light 0x7f070075
+int style Base_V23_Theme_AppCompat 0x7f070077
+int style Base_V23_Theme_AppCompat_Light 0x7f070078
+int style Base_V7_Theme_AppCompat 0x7f070094
+int style Base_V7_Theme_AppCompat_Dialog 0x7f070095
+int style Base_V7_Theme_AppCompat_Light 0x7f070096
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f070097
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f070098
+int style Base_V7_Widget_AppCompat_EditText 0x7f070099
+int style Base_Widget_AppCompat_ActionBar 0x7f07009a
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f07009b
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f07009c
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f070054
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f070055
+int style Base_Widget_AppCompat_ActionButton 0x7f070056
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f070057
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f070058
+int style Base_Widget_AppCompat_ActionMode 0x7f07009d
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f07009e
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f070016
+int style Base_Widget_AppCompat_Button 0x7f070059
+int style Base_Widget_AppCompat_Button_Borderless 0x7f07005a
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f07005b
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f07009f
+int style Base_Widget_AppCompat_Button_Colored 0x7f070079
+int style Base_Widget_AppCompat_Button_Small 0x7f07005c
+int style Base_Widget_AppCompat_ButtonBar 0x7f07005d
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0700a0
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f07005e
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f07005f
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0700a1
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f070000
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0700a2
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f070060
+int style Base_Widget_AppCompat_EditText 0x7f070017
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f0700a3
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0700a4
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0700a5
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f070061
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f070062
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f070063
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f070064
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f070065
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f070066
+int style Base_Widget_AppCompat_ListView 0x7f070067
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f070068
+int style Base_Widget_AppCompat_ListView_Menu 0x7f070069
+int style Base_Widget_AppCompat_PopupMenu 0x7f07006a
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f07006b
+int style Base_Widget_AppCompat_PopupWindow 0x7f0700a6
+int style Base_Widget_AppCompat_ProgressBar 0x7f07000d
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f07000e
+int style Base_Widget_AppCompat_RatingBar 0x7f07006c
+int style Base_Widget_AppCompat_SearchView 0x7f0700a7
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0700a8
+int style Base_Widget_AppCompat_Spinner 0x7f07006d
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f07006e
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f07006f
+int style Base_Widget_AppCompat_Toolbar 0x7f0700a9
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f070070
+int style Platform_AppCompat 0x7f07000f
+int style Platform_AppCompat_Light 0x7f070010
+int style Platform_ThemeOverlay_AppCompat 0x7f070071
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f070072
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f070073
+int style Platform_V11_AppCompat 0x7f070011
+int style Platform_V11_AppCompat_Light 0x7f070012
+int style Platform_V14_AppCompat 0x7f070019
+int style Platform_V14_AppCompat_Light 0x7f07001a
+int style Platform_Widget_AppCompat_Spinner 0x7f070013
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f070020
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f070021
+int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f070022
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f070023
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f070024
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f070025
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f070026
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f070027
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f070028
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f070029
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f07002a
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f07002b
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f07002c
+int style TextAppearance_AppCompat 0x7f0700aa
+int style TextAppearance_AppCompat_Body1 0x7f0700ab
+int style TextAppearance_AppCompat_Body2 0x7f0700ac
+int style TextAppearance_AppCompat_Button 0x7f0700ad
+int style TextAppearance_AppCompat_Caption 0x7f0700ae
+int style TextAppearance_AppCompat_Display1 0x7f0700af
+int style TextAppearance_AppCompat_Display2 0x7f0700b0
+int style TextAppearance_AppCompat_Display3 0x7f0700b1
+int style TextAppearance_AppCompat_Display4 0x7f0700b2
+int style TextAppearance_AppCompat_Headline 0x7f0700b3
+int style TextAppearance_AppCompat_Inverse 0x7f0700b4
+int style TextAppearance_AppCompat_Large 0x7f0700b5
+int style TextAppearance_AppCompat_Large_Inverse 0x7f0700b6
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0700b7
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0700b8
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0700b9
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0700ba
+int style TextAppearance_AppCompat_Medium 0x7f0700bb
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f0700bc
+int style TextAppearance_AppCompat_Menu 0x7f0700bd
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0700be
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f0700bf
+int style TextAppearance_AppCompat_Small 0x7f0700c0
+int style TextAppearance_AppCompat_Small_Inverse 0x7f0700c1
+int style TextAppearance_AppCompat_Subhead 0x7f0700c2
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0700c3
+int style TextAppearance_AppCompat_Title 0x7f0700c4
+int style TextAppearance_AppCompat_Title_Inverse 0x7f0700c5
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0700c6
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0700c7
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0700c8
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0700c9
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0700ca
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0700cb
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0700cc
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0700cd
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0700ce
+int style TextAppearance_AppCompat_Widget_Button 0x7f0700cf
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0700d0
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0700d1
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0700d2
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0700d3
+int style TextAppearance_AppCompat_Widget_Switch 0x7f0700d4
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0700d5
+int style TextAppearance_StatusBar_EventContent 0x7f07001b
+int style TextAppearance_StatusBar_EventContent_Info 0x7f07001c
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f07001d
+int style TextAppearance_StatusBar_EventContent_Time 0x7f07001e
+int style TextAppearance_StatusBar_EventContent_Title 0x7f07001f
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0700d6
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0700d7
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0700d8
+int style Theme_AppCompat 0x7f0700d9
+int style Theme_AppCompat_CompactMenu 0x7f0700da
+int style Theme_AppCompat_Dialog 0x7f0700db
+int style Theme_AppCompat_Dialog_Alert 0x7f0700dc
+int style Theme_AppCompat_Dialog_MinWidth 0x7f0700dd
+int style Theme_AppCompat_DialogWhenLarge 0x7f0700de
+int style Theme_AppCompat_Light 0x7f0700df
+int style Theme_AppCompat_Light_DarkActionBar 0x7f0700e0
+int style Theme_AppCompat_Light_Dialog 0x7f0700e1
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f0700e2
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0700e3
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0700e4
+int style Theme_AppCompat_Light_NoActionBar 0x7f0700e5
+int style Theme_AppCompat_NoActionBar 0x7f0700e6
+int style ThemeOverlay_AppCompat 0x7f0700e7
+int style ThemeOverlay_AppCompat_ActionBar 0x7f0700e8
+int style ThemeOverlay_AppCompat_Dark 0x7f0700e9
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0700ea
+int style ThemeOverlay_AppCompat_Light 0x7f0700eb
+int style Widget_AppCompat_ActionBar 0x7f0700ec
+int style Widget_AppCompat_ActionBar_Solid 0x7f0700ed
+int style Widget_AppCompat_ActionBar_TabBar 0x7f0700ee
+int style Widget_AppCompat_ActionBar_TabText 0x7f0700ef
+int style Widget_AppCompat_ActionBar_TabView 0x7f0700f0
+int style Widget_AppCompat_ActionButton 0x7f0700f1
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f0700f2
+int style Widget_AppCompat_ActionButton_Overflow 0x7f0700f3
+int style Widget_AppCompat_ActionMode 0x7f0700f4
+int style Widget_AppCompat_ActivityChooserView 0x7f0700f5
+int style Widget_AppCompat_AutoCompleteTextView 0x7f0700f6
+int style Widget_AppCompat_Button 0x7f0700f7
+int style Widget_AppCompat_Button_Borderless 0x7f0700f8
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f0700f9
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0700fa
+int style Widget_AppCompat_Button_Colored 0x7f0700fb
+int style Widget_AppCompat_Button_Small 0x7f0700fc
+int style Widget_AppCompat_ButtonBar 0x7f0700fd
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0700fe
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0700ff
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f070100
+int style Widget_AppCompat_CompoundButton_Switch 0x7f070101
+int style Widget_AppCompat_DrawerArrowToggle 0x7f070102
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f070103
+int style Widget_AppCompat_EditText 0x7f070104
+int style Widget_AppCompat_Light_ActionBar 0x7f070105
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f070106
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f070107
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f070108
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f070109
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f07010a
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f07010b
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f07010c
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f07010d
+int style Widget_AppCompat_Light_ActionButton 0x7f07010e
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f07010f
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f070110
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f070111
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f070112
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f070113
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f070114
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f070115
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f070116
+int style Widget_AppCompat_Light_PopupMenu 0x7f070117
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f070118
+int style Widget_AppCompat_Light_SearchView 0x7f070119
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f07011a
+int style Widget_AppCompat_ListPopupWindow 0x7f07011b
+int style Widget_AppCompat_ListView 0x7f07011c
+int style Widget_AppCompat_ListView_DropDown 0x7f07011d
+int style Widget_AppCompat_ListView_Menu 0x7f07011e
+int style Widget_AppCompat_PopupMenu 0x7f07011f
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f070120
+int style Widget_AppCompat_PopupWindow 0x7f070121
+int style Widget_AppCompat_ProgressBar 0x7f070122
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f070123
+int style Widget_AppCompat_RatingBar 0x7f070124
+int style Widget_AppCompat_SearchView 0x7f070125
+int style Widget_AppCompat_SearchView_ActionBar 0x7f070126
+int style Widget_AppCompat_Spinner 0x7f070127
+int style Widget_AppCompat_Spinner_DropDown 0x7f070128
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f070129
+int style Widget_AppCompat_Spinner_Underlined 0x7f07012a
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f07012b
+int style Widget_AppCompat_Toolbar 0x7f07012c
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f07012d
+int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01007b }
+int styleable ActionBar_background 10
+int styleable ActionBar_backgroundSplit 12
+int styleable ActionBar_backgroundStacked 11
+int styleable ActionBar_contentInsetEnd 21
+int styleable ActionBar_contentInsetLeft 22
+int styleable ActionBar_contentInsetRight 23
+int styleable ActionBar_contentInsetStart 20
+int styleable ActionBar_customNavigationLayout 13
+int styleable ActionBar_displayOptions 3
+int styleable ActionBar_divider 9
+int styleable ActionBar_elevation 24
+int styleable ActionBar_height 0
+int styleable ActionBar_hideOnContentScroll 19
+int styleable ActionBar_homeAsUpIndicator 26
+int styleable ActionBar_homeLayout 14
+int styleable ActionBar_icon 7
+int styleable ActionBar_indeterminateProgressStyle 16
+int styleable ActionBar_itemPadding 18
+int styleable ActionBar_logo 8
+int styleable ActionBar_navigationMode 2
+int styleable ActionBar_popupTheme 25
+int styleable ActionBar_progressBarPadding 17
+int styleable ActionBar_progressBarStyle 15
+int styleable ActionBar_subtitle 4
+int styleable ActionBar_subtitleTextStyle 6
+int styleable ActionBar_title 1
+int styleable ActionBar_titleTextStyle 5
+int[] styleable ActionBarLayout { 0x010100b3 }
+int styleable ActionBarLayout_android_layout_gravity 0
+int[] styleable ActionMenuItemView { 0x0101013f }
+int styleable ActionMenuItemView_android_minWidth 0
+int[] styleable ActionMenuView { }
+int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
+int styleable ActionMode_background 3
+int styleable ActionMode_backgroundSplit 4
+int styleable ActionMode_closeItemLayout 5
+int styleable ActionMode_height 0
+int styleable ActionMode_subtitleTextStyle 2
+int styleable ActionMode_titleTextStyle 1
+int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
+int styleable ActivityChooserView_initialActivityCount 0
+int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonPanelSideLayout 1
+int styleable AlertDialog_listItemLayout 5
+int styleable AlertDialog_listLayout 2
+int styleable AlertDialog_multiChoiceItemLayout 3
+int styleable AlertDialog_singleChoiceItemLayout 4
+int[] styleable AppCompatTextView { 0x01010034, 0x7f010024 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_textAllCaps 1
+int[] styleable CompoundButton { 0x01010107, 0x7f010025, 0x7f010026 }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable DrawerArrowToggle { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }
+int styleable DrawerArrowToggle_arrowHeadLength 4
+int styleable DrawerArrowToggle_arrowShaftLength 5
+int styleable DrawerArrowToggle_barLength 6
+int styleable DrawerArrowToggle_color 0
+int styleable DrawerArrowToggle_drawableSize 2
+int styleable DrawerArrowToggle_gapBetweenBars 3
+int styleable DrawerArrowToggle_spinBars 1
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f01002f, 0x7f010030, 0x7f010031 }
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 8
+int styleable LinearLayoutCompat_measureWithLargestChild 6
+int styleable LinearLayoutCompat_showDividers 7
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
+int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
+int styleable MenuGroup_android_checkableBehavior 5
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 2
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035 }
+int styleable MenuItem_actionLayout 14
+int styleable MenuItem_actionProviderClass 16
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_showAsAction 13
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010036 }
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_preserveIconSpacing 7
+int[] styleable PopupWindow { 0x01010176, 0x7f010037 }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_overlapAnchor 1
+int[] styleable PopupWindowBackgroundState { 0x7f010038 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045 }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 3
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 1
+int styleable SearchView_closeIcon 8
+int styleable SearchView_commitIcon 13
+int styleable SearchView_defaultQueryHint 7
+int styleable SearchView_goIcon 9
+int styleable SearchView_iconifiedByDefault 5
+int styleable SearchView_layout 4
+int styleable SearchView_queryBackground 15
+int styleable SearchView_queryHint 6
+int styleable SearchView_searchHintIcon 11
+int styleable SearchView_searchIcon 10
+int styleable SearchView_submitBackground 16
+int styleable SearchView_suggestionRowLayout 14
+int styleable SearchView_voiceIcon 12
+int[] styleable Spinner { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
+int styleable Spinner_android_dropDownWidth 2
+int styleable Spinner_android_popupBackground 0
+int styleable Spinner_android_prompt 1
+int styleable Spinner_popupTheme 3
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c }
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 9
+int styleable SwitchCompat_splitTrack 8
+int styleable SwitchCompat_switchMinWidth 6
+int styleable SwitchCompat_switchPadding 7
+int styleable SwitchCompat_switchTextAppearance 5
+int styleable SwitchCompat_thumbTextPadding 4
+int styleable SwitchCompat_track 3
+int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 }
+int styleable TextAppearance_android_textColor 3
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_textStyle 2
+int styleable TextAppearance_android_typeface 1
+int styleable TextAppearance_textAllCaps 4
+int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6 }
+int styleable Theme_actionBarDivider 23
+int styleable Theme_actionBarItemBackground 24
+int styleable Theme_actionBarPopupTheme 17
+int styleable Theme_actionBarSize 22
+int styleable Theme_actionBarSplitStyle 19
+int styleable Theme_actionBarStyle 18
+int styleable Theme_actionBarTabBarStyle 13
+int styleable Theme_actionBarTabStyle 12
+int styleable Theme_actionBarTabTextStyle 14
+int styleable Theme_actionBarTheme 20
+int styleable Theme_actionBarWidgetTheme 21
+int styleable Theme_actionButtonStyle 49
+int styleable Theme_actionDropDownStyle 45
+int styleable Theme_actionMenuTextAppearance 25
+int styleable Theme_actionMenuTextColor 26
+int styleable Theme_actionModeBackground 29
+int styleable Theme_actionModeCloseButtonStyle 28
+int styleable Theme_actionModeCloseDrawable 31
+int styleable Theme_actionModeCopyDrawable 33
+int styleable Theme_actionModeCutDrawable 32
+int styleable Theme_actionModeFindDrawable 37
+int styleable Theme_actionModePasteDrawable 34
+int styleable Theme_actionModePopupWindowStyle 39
+int styleable Theme_actionModeSelectAllDrawable 35
+int styleable Theme_actionModeShareDrawable 36
+int styleable Theme_actionModeSplitBackground 30
+int styleable Theme_actionModeStyle 27
+int styleable Theme_actionModeWebSearchDrawable 38
+int styleable Theme_actionOverflowButtonStyle 15
+int styleable Theme_actionOverflowMenuStyle 16
+int styleable Theme_activityChooserViewStyle 57
+int styleable Theme_alertDialogButtonGroupStyle 91
+int styleable Theme_alertDialogCenterButtons 92
+int styleable Theme_alertDialogStyle 90
+int styleable Theme_alertDialogTheme 93
+int styleable Theme_android_windowAnimationStyle 1
+int styleable Theme_android_windowIsFloating 0
+int styleable Theme_autoCompleteTextViewStyle 98
+int styleable Theme_borderlessButtonStyle 54
+int styleable Theme_buttonBarButtonStyle 51
+int styleable Theme_buttonBarNegativeButtonStyle 96
+int styleable Theme_buttonBarNeutralButtonStyle 97
+int styleable Theme_buttonBarPositiveButtonStyle 95
+int styleable Theme_buttonBarStyle 50
+int styleable Theme_buttonStyle 99
+int styleable Theme_buttonStyleSmall 100
+int styleable Theme_checkboxStyle 101
+int styleable Theme_checkedTextViewStyle 102
+int styleable Theme_colorAccent 83
+int styleable Theme_colorButtonNormal 87
+int styleable Theme_colorControlActivated 85
+int styleable Theme_colorControlHighlight 86
+int styleable Theme_colorControlNormal 84
+int styleable Theme_colorPrimary 81
+int styleable Theme_colorPrimaryDark 82
+int styleable Theme_colorSwitchThumbNormal 88
+int styleable Theme_controlBackground 89
+int styleable Theme_dialogPreferredPadding 43
+int styleable Theme_dialogTheme 42
+int styleable Theme_dividerHorizontal 56
+int styleable Theme_dividerVertical 55
+int styleable Theme_dropDownListViewStyle 73
+int styleable Theme_dropdownListPreferredItemHeight 46
+int styleable Theme_editTextBackground 63
+int styleable Theme_editTextColor 62
+int styleable Theme_editTextStyle 103
+int styleable Theme_homeAsUpIndicator 48
+int styleable Theme_listChoiceBackgroundIndicator 80
+int styleable Theme_listDividerAlertDialog 44
+int styleable Theme_listPopupWindowStyle 74
+int styleable Theme_listPreferredItemHeight 68
+int styleable Theme_listPreferredItemHeightLarge 70
+int styleable Theme_listPreferredItemHeightSmall 69
+int styleable Theme_listPreferredItemPaddingLeft 71
+int styleable Theme_listPreferredItemPaddingRight 72
+int styleable Theme_panelBackground 77
+int styleable Theme_panelMenuListTheme 79
+int styleable Theme_panelMenuListWidth 78
+int styleable Theme_popupMenuStyle 60
+int styleable Theme_popupWindowStyle 61
+int styleable Theme_radioButtonStyle 104
+int styleable Theme_ratingBarStyle 105
+int styleable Theme_searchViewStyle 67
+int styleable Theme_selectableItemBackground 52
+int styleable Theme_selectableItemBackgroundBorderless 53
+int styleable Theme_spinnerDropDownItemStyle 47
+int styleable Theme_spinnerStyle 106
+int styleable Theme_switchStyle 107
+int styleable Theme_textAppearanceLargePopupMenu 40
+int styleable Theme_textAppearanceListItem 75
+int styleable Theme_textAppearanceListItemSmall 76
+int styleable Theme_textAppearanceSearchResultSubtitle 65
+int styleable Theme_textAppearanceSearchResultTitle 64
+int styleable Theme_textAppearanceSmallPopupMenu 41
+int styleable Theme_textColorAlertDialogListItem 94
+int styleable Theme_textColorSearchUrl 66
+int styleable Theme_toolbarNavigationButtonStyle 59
+int styleable Theme_toolbarStyle 58
+int styleable Theme_windowActionBar 2
+int styleable Theme_windowActionBarOverlay 4
+int styleable Theme_windowActionModeOverlay 5
+int styleable Theme_windowFixedHeightMajor 9
+int styleable Theme_windowFixedHeightMinor 7
+int styleable Theme_windowFixedWidthMajor 6
+int styleable Theme_windowFixedWidthMinor 8
+int styleable Theme_windowMinWidthMajor 10
+int styleable Theme_windowMinWidthMinor 11
+int styleable Theme_windowNoTitle 3
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_collapseContentDescription 19
+int styleable Toolbar_collapseIcon 18
+int styleable Toolbar_contentInsetEnd 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 5
+int styleable Toolbar_logo 4
+int styleable Toolbar_logoDescription 22
+int styleable Toolbar_maxButtonHeight 17
+int styleable Toolbar_navigationContentDescription 21
+int styleable Toolbar_navigationIcon 20
+int styleable Toolbar_popupTheme 9
+int styleable Toolbar_subtitle 3
+int styleable Toolbar_subtitleTextAppearance 11
+int styleable Toolbar_subtitleTextColor 24
+int styleable Toolbar_title 2
+int styleable Toolbar_titleMarginBottom 16
+int styleable Toolbar_titleMarginEnd 14
+int styleable Toolbar_titleMarginStart 13
+int styleable Toolbar_titleMarginTop 15
+int styleable Toolbar_titleMargins 12
+int styleable Toolbar_titleTextAppearance 10
+int styleable Toolbar_titleTextColor 23
+int[] styleable View { 0x01010000, 0x010100da, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 }
+int styleable View_android_focusable 1
+int styleable View_android_theme 0
+int styleable View_paddingEnd 3
+int styleable View_paddingStart 2
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100c9, 0x7f0100ca }
+int styleable ViewBackgroundHelper_android_background 0
+int styleable ViewBackgroundHelper_backgroundTint 1
+int styleable ViewBackgroundHelper_backgroundTintMode 2
+int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
+int styleable ViewStubCompat_android_id 0
+int styleable ViewStubCompat_android_inflatedId 2
+int styleable ViewStubCompat_android_layout 1
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/aapt/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/aapt/AndroidManifest.xml
new file mode 100644
index 00000000..58122b1d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/aapt/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/annotations.zip b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/annotations.zip
new file mode 100644
index 00000000..0f94f5df
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/annotations.zip differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/jars/classes.jar b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/jars/classes.jar
new file mode 100644
index 00000000..fe72b5c7
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/jars/classes.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/public.txt b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/public.txt
new file mode 100644
index 00000000..dde7ec50
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/public.txt
@@ -0,0 +1,307 @@
+style TextAppearance.AppCompat
+style TextAppearance.AppCompat.Body1
+style TextAppearance.AppCompat.Body2
+style TextAppearance.AppCompat.Button
+style TextAppearance.AppCompat.Caption
+style TextAppearance.AppCompat.Display1
+style TextAppearance.AppCompat.Display2
+style TextAppearance.AppCompat.Display3
+style TextAppearance.AppCompat.Display4
+style TextAppearance.AppCompat.Headline
+style TextAppearance.AppCompat.Inverse
+style TextAppearance.AppCompat.Large
+style TextAppearance.AppCompat.Large.Inverse
+style TextAppearance.AppCompat.Light.SearchResult.Subtitle
+style TextAppearance.AppCompat.Light.SearchResult.Title
+style TextAppearance.AppCompat.Light.Widget.PopupMenu.Large
+style TextAppearance.AppCompat.Light.Widget.PopupMenu.Small
+style TextAppearance.AppCompat.Medium
+style TextAppearance.AppCompat.Medium.Inverse
+style TextAppearance.AppCompat.Menu
+style TextAppearance.AppCompat.SearchResult.Subtitle
+style TextAppearance.AppCompat.SearchResult.Title
+style TextAppearance.AppCompat.Small
+style TextAppearance.AppCompat.Small.Inverse
+style TextAppearance.AppCompat.Subhead
+style TextAppearance.AppCompat.Subhead.Inverse
+style TextAppearance.AppCompat.Title
+style TextAppearance.AppCompat.Title.Inverse
+style TextAppearance.AppCompat.Widget.ActionBar.Menu
+style TextAppearance.AppCompat.Widget.ActionBar.Subtitle
+style TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse
+style TextAppearance.AppCompat.Widget.ActionBar.Title
+style TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse
+style TextAppearance.AppCompat.Widget.ActionMode.Subtitle
+style TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse
+style TextAppearance.AppCompat.Widget.ActionMode.Title
+style TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse
+style TextAppearance.AppCompat.Widget.Button
+style TextAppearance.AppCompat.Widget.Button.Inverse
+style TextAppearance.AppCompat.Widget.DropDownItem
+style TextAppearance.AppCompat.Widget.PopupMenu.Large
+style TextAppearance.AppCompat.Widget.PopupMenu.Small
+style TextAppearance.AppCompat.Widget.Switch
+style TextAppearance.AppCompat.Widget.TextView.SpinnerItem
+style Theme.AppCompat
+style Theme.AppCompat.Dialog
+style Theme.AppCompat.Dialog.Alert
+style Theme.AppCompat.Dialog.MinWidth
+style Theme.AppCompat.DialogWhenLarge
+style Theme.AppCompat.Light
+style Theme.AppCompat.Light.DarkActionBar
+style Theme.AppCompat.Light.Dialog
+style Theme.AppCompat.Light.Dialog.Alert
+style Theme.AppCompat.Light.Dialog.MinWidth
+style Theme.AppCompat.Light.DialogWhenLarge
+style Theme.AppCompat.Light.NoActionBar
+style Theme.AppCompat.NoActionBar
+style ThemeOverlay.AppCompat
+style ThemeOverlay.AppCompat.ActionBar
+style ThemeOverlay.AppCompat.Dark
+style ThemeOverlay.AppCompat.Dark.ActionBar
+style ThemeOverlay.AppCompat.Light
+style Widget.AppCompat.ActionBar
+style Widget.AppCompat.ActionBar.Solid
+style Widget.AppCompat.ActionBar.TabBar
+style Widget.AppCompat.ActionBar.TabText
+style Widget.AppCompat.ActionBar.TabView
+style Widget.AppCompat.ActionButton
+style Widget.AppCompat.ActionButton.CloseMode
+style Widget.AppCompat.ActionButton.Overflow
+style Widget.AppCompat.ActionMode
+style Widget.AppCompat.AutoCompleteTextView
+style Widget.AppCompat.Button
+style Widget.AppCompat.Button.Borderless
+style Widget.AppCompat.Button.Borderless.Colored
+style Widget.AppCompat.Button.ButtonBar.AlertDialog
+style Widget.AppCompat.Button.Colored
+style Widget.AppCompat.Button.Small
+style Widget.AppCompat.ButtonBar
+style Widget.AppCompat.ButtonBar.AlertDialog
+style Widget.AppCompat.CompoundButton.CheckBox
+style Widget.AppCompat.CompoundButton.RadioButton
+style Widget.AppCompat.CompoundButton.Switch
+style Widget.AppCompat.DrawerArrowToggle
+style Widget.AppCompat.DropDownItem.Spinner
+style Widget.AppCompat.EditText
+style Widget.AppCompat.Light.ActionBar
+style Widget.AppCompat.Light.ActionBar.Solid
+style Widget.AppCompat.Light.ActionBar.Solid.Inverse
+style Widget.AppCompat.Light.ActionBar.TabBar
+style Widget.AppCompat.Light.ActionBar.TabBar.Inverse
+style Widget.AppCompat.Light.ActionBar.TabText
+style Widget.AppCompat.Light.ActionBar.TabText.Inverse
+style Widget.AppCompat.Light.ActionBar.TabView
+style Widget.AppCompat.Light.ActionBar.TabView.Inverse
+style Widget.AppCompat.Light.ActionButton
+style Widget.AppCompat.Light.ActionButton.CloseMode
+style Widget.AppCompat.Light.ActionButton.Overflow
+style Widget.AppCompat.Light.ActionMode.Inverse
+style Widget.AppCompat.Light.AutoCompleteTextView
+style Widget.AppCompat.Light.DropDownItem.Spinner
+style Widget.AppCompat.Light.ListPopupWindow
+style Widget.AppCompat.Light.ListView.DropDown
+style Widget.AppCompat.Light.PopupMenu
+style Widget.AppCompat.Light.PopupMenu.Overflow
+style Widget.AppCompat.Light.SearchView
+style Widget.AppCompat.Light.Spinner.DropDown.ActionBar
+style Widget.AppCompat.ListPopupWindow
+style Widget.AppCompat.ListView
+style Widget.AppCompat.ListView.DropDown
+style Widget.AppCompat.ListView.Menu
+style Widget.AppCompat.PopupMenu
+style Widget.AppCompat.PopupMenu.Overflow
+style Widget.AppCompat.PopupWindow
+style Widget.AppCompat.ProgressBar
+style Widget.AppCompat.ProgressBar.Horizontal
+style Widget.AppCompat.RatingBar
+style Widget.AppCompat.SearchView
+style Widget.AppCompat.SearchView.ActionBar
+style Widget.AppCompat.Spinner
+style Widget.AppCompat.Spinner.DropDown
+style Widget.AppCompat.Spinner.DropDown.ActionBar
+style Widget.AppCompat.Spinner.Underlined
+style Widget.AppCompat.TextView.SpinnerItem
+style Widget.AppCompat.Toolbar
+style Widget.AppCompat.Toolbar.Button.Navigation
+attr actionBarDivider
+attr actionBarItemBackground
+attr actionBarPopupTheme
+attr actionBarSize
+attr actionBarSplitStyle
+attr actionBarStyle
+attr actionBarTabBarStyle
+attr actionBarTabStyle
+attr actionBarTabTextStyle
+attr actionBarTheme
+attr actionBarWidgetTheme
+attr actionButtonStyle
+attr actionDropDownStyle
+attr actionLayout
+attr actionMenuTextAppearance
+attr actionMenuTextColor
+attr actionModeBackground
+attr actionModeCloseButtonStyle
+attr actionModeCloseDrawable
+attr actionModeCopyDrawable
+attr actionModeCutDrawable
+attr actionModeFindDrawable
+attr actionModePasteDrawable
+attr actionModeSelectAllDrawable
+attr actionModeShareDrawable
+attr actionModeSplitBackground
+attr actionModeStyle
+attr actionModeWebSearchDrawable
+attr actionOverflowButtonStyle
+attr actionOverflowMenuStyle
+attr actionProviderClass
+attr actionViewClass
+attr alertDialogStyle
+attr alertDialogTheme
+attr arrowHeadLength
+attr arrowShaftLength
+attr autoCompleteTextViewStyle
+attr background
+attr backgroundSplit
+attr backgroundStacked
+attr backgroundTint
+attr backgroundTintMode
+attr barLength
+attr borderlessButtonStyle
+attr buttonBarButtonStyle
+attr buttonBarNegativeButtonStyle
+attr buttonBarNeutralButtonStyle
+attr buttonBarPositiveButtonStyle
+attr buttonBarStyle
+attr buttonStyle
+attr buttonStyleSmall
+attr buttonTint
+attr buttonTintMode
+attr checkboxStyle
+attr checkedTextViewStyle
+attr closeIcon
+attr closeItemLayout
+attr collapseContentDescription
+attr collapseIcon
+attr color
+attr colorAccent
+attr colorButtonNormal
+attr colorControlActivated
+attr colorControlHighlight
+attr colorControlNormal
+attr colorPrimary
+attr colorPrimaryDark
+attr colorSwitchThumbNormal
+attr commitIcon
+attr contentInsetEnd
+attr contentInsetLeft
+attr contentInsetRight
+attr contentInsetStart
+attr customNavigationLayout
+attr dialogPreferredPadding
+attr dialogTheme
+attr displayOptions
+attr divider
+attr dividerHorizontal
+attr dividerPadding
+attr dividerVertical
+attr drawableSize
+attr drawerArrowStyle
+attr dropDownListViewStyle
+attr dropdownListPreferredItemHeight
+attr editTextBackground
+attr editTextColor
+attr editTextStyle
+attr elevation
+attr gapBetweenBars
+attr goIcon
+attr height
+attr hideOnContentScroll
+attr homeAsUpIndicator
+attr homeLayout
+attr icon
+attr iconifiedByDefault
+attr indeterminateProgressStyle
+attr isLightTheme
+attr itemPadding
+attr layout
+attr listChoiceBackgroundIndicator
+attr listDividerAlertDialog
+attr listPopupWindowStyle
+attr listPreferredItemHeight
+attr listPreferredItemHeightLarge
+attr listPreferredItemHeightSmall
+attr listPreferredItemPaddingLeft
+attr listPreferredItemPaddingRight
+attr logo
+attr logoDescription
+attr measureWithLargestChild
+attr middleBarArrowSize
+attr navigationContentDescription
+attr navigationIcon
+attr navigationMode
+attr overlapAnchor
+attr paddingEnd
+attr paddingStart
+attr panelBackground
+attr popupMenuStyle
+attr popupTheme
+attr popupWindowStyle
+attr preserveIconSpacing
+attr progressBarPadding
+attr progressBarStyle
+attr queryBackground
+attr queryHint
+attr radioButtonStyle
+attr ratingBarStyle
+attr searchHintIcon
+attr searchIcon
+attr searchViewStyle
+attr selectableItemBackground
+attr selectableItemBackgroundBorderless
+attr showAsAction
+attr showDividers
+attr showText
+attr spinBars
+attr spinnerDropDownItemStyle
+attr spinnerStyle
+attr splitTrack
+attr submitBackground
+attr subtitle
+attr subtitleTextAppearance
+attr subtitleTextColor
+attr subtitleTextStyle
+attr suggestionRowLayout
+layout support_simple_spinner_dropdown_item
+attr switchMinWidth
+attr switchPadding
+attr switchStyle
+attr switchTextAppearance
+attr textAllCaps
+attr textAppearanceLargePopupMenu
+attr textAppearanceListItem
+attr textAppearanceListItemSmall
+attr textAppearanceSearchResultSubtitle
+attr textAppearanceSearchResultTitle
+attr textAppearanceSmallPopupMenu
+attr textColorAlertDialogListItem
+attr theme
+attr thickness
+attr thumbTextPadding
+attr title
+attr titleMarginBottom
+attr titleMarginEnd
+attr titleMarginStart
+attr titleMarginTop
+attr titleMargins
+attr titleTextAppearance
+attr titleTextColor
+attr titleTextStyle
+attr toolbarNavigationButtonStyle
+attr toolbarStyle
+attr track
+attr voiceIcon
+attr windowActionBar
+attr windowActionBarOverlay
+attr windowActionModeOverlay
+attr windowNoTitle
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_in.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_in.xml
new file mode 100644
index 00000000..0b1d093c
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_in.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_out.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_out.xml
new file mode 100644
index 00000000..85b1da04
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_grow_fade_in_from_bottom.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_grow_fade_in_from_bottom.xml
new file mode 100644
index 00000000..1e9b12d1
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_grow_fade_in_from_bottom.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_enter.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_enter.xml
new file mode 100644
index 00000000..420c20f8
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_enter.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_exit.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_exit.xml
new file mode 100644
index 00000000..708aac6a
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_exit.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_shrink_fade_out_from_bottom.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_shrink_fade_out_from_bottom.xml
new file mode 100644
index 00000000..09f5cf3c
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_shrink_fade_out_from_bottom.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_bottom.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_bottom.xml
new file mode 100644
index 00000000..648b22e5
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_bottom.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_top.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_top.xml
new file mode 100644
index 00000000..dab0606e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_bottom.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_bottom.xml
new file mode 100644
index 00000000..beae155b
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_bottom.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_top.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_top.xml
new file mode 100644
index 00000000..f721cd18
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
new file mode 100644
index 00000000..b95cde62
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml
new file mode 100644
index 00000000..d7c4b285
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v23/abc_color_highlight_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v23/abc_color_highlight_material.xml
new file mode 100644
index 00000000..55279430
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v23/abc_color_highlight_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_dark.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_dark.xml
new file mode 100644
index 00000000..e58e6d07
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_light.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_light.xml
new file mode 100644
index 00000000..bab927f7
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_dark.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_dark.xml
new file mode 100644
index 00000000..d340ea5e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_light.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_light.xml
new file mode 100644
index 00000000..954b58ab
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_dark.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_dark.xml
new file mode 100644
index 00000000..2462f7e7
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_light.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_light.xml
new file mode 100644
index 00000000..204d0be8
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_search_url_text.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_search_url_text.xml
new file mode 100644
index 00000000..e222ae3e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_search_url_text.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_dark.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_dark.xml
new file mode 100644
index 00000000..2b9f7847
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_light.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_light.xml
new file mode 100644
index 00000000..d4bab1fd
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_dark.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_dark.xml
new file mode 100644
index 00000000..f7eb3548
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_light.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_light.xml
new file mode 100644
index 00000000..2ab38db5
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 00000000..4d9f861f
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 00000000..99110085
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 00000000..69ff9dde
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 00000000..9218981b
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 00000000..a5885763
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 00000000..b184dbc6
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 00000000..6549c527
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 00000000..88f1767f
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 00000000..d5e1a001
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 00000000..22643982
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..f61e8e3e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 00000000..0fd15563
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..65ccd8f4
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..b9ff1db5
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..70eb0737
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..e78bcaf5
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 00000000..9a878205
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 00000000..8610c501
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 00000000..2d971a94
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 00000000..ee408129
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..b9baa0cc
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..a87d2cdc
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 00000000..1e571f5c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_focused_holo.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_focused_holo.9.png
new file mode 100644
index 00000000..c09ec90e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_focused_holo.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_longpressed_holo.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 00000000..62fbd2cb
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_longpressed_holo.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 00000000..2f6ef916
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_light.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 00000000..863ce95f
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 00000000..b6d46777
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 00000000..e01c7392
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 00000000..2cf413c5
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 00000000..9d8451aa
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..9de02639
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 00000000..56436a1c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 00000000..4b0b10a7
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..5b13bc17
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..0078bf6b
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..a74ab260
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..6282df4e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..2e1062fa
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..a262b0c8
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..9ed43ca4
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..4cd8a27c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..e300b7cf
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..05b1e119
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..aa7b3238
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..d02a5da1
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..a188f2fb
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..e95ba942
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..87bf8d36
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..b097e48a
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..de371581
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..ac86165d
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..8b2adf6b
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..0b895042
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..7dc69341
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..884cd127
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..90fe333a
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..930630de
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 00000000..fa0ed8fe
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 00000000..7a9fcbcb
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 00000000..3b052e57
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 00000000..96a86931
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 00000000..827d6342
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 00000000..09084757
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 00000000..a5a437f3
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 00000000..d890a62a
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 00000000..06204394
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 00000000..038e0008
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..8043d4ca
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 00000000..e80681ae
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..9603e76e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..44c14232
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..80c06955
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..3966d6ad
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 00000000..017e45ed
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 00000000..ec0cff49
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 00000000..966938b9
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 00000000..d05f969e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..451818ce
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..a216da17
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 00000000..1e571f5c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_focused_holo.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_focused_holo.9.png
new file mode 100644
index 00000000..addb54a2
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_focused_holo.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_longpressed_holo.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 00000000..5fcd5b20
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_longpressed_holo.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 00000000..251b9891
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_light.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 00000000..01efec04
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 00000000..f1d1b617
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 00000000..10851f6c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 00000000..fe0ec49a
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 00000000..5f55cd55
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..ed75cb81
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 00000000..fcd81de0
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 00000000..12b0a79c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..3ffa2519
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..0eb61f15
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..0c766f30
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..4f66d7ad
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_action_bar_item_background_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_action_bar_item_background_material.xml
new file mode 100644
index 00000000..40d02ee8
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_action_bar_item_background_material.xml
@@ -0,0 +1,18 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_btn_colored_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_btn_colored_material.xml
new file mode 100644
index 00000000..63435d79
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_btn_colored_material.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v23/abc_control_background_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v23/abc_control_background_material.xml
new file mode 100644
index 00000000..425066d8
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v23/abc_control_background_material.xml
@@ -0,0 +1,19 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 00000000..6284eaaa
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 00000000..49025208
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 00000000..59a683ab
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 00000000..03bf49cc
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 00000000..342323b4
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 00000000..c0333f98
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 00000000..2f29c39c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 00000000..a854864d
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 00000000..726b1dc5
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 00000000..600178a9
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..c465e82f
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 00000000..76e07f09
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..1015e1f4
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..b3fa6bc2
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..c8a6d258
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..3c5e683e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 00000000..f87733af
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 00000000..9aabc43c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 00000000..c039c8e0
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 00000000..b57ee193
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..76f26965
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..d0385ba4
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 00000000..1e571f5c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_focused_holo.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_focused_holo.9.png
new file mode 100644
index 00000000..67c25aef
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_focused_holo.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_longpressed_holo.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 00000000..17c34a1a
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_longpressed_holo.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 00000000..988548a1
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 00000000..15fcf6a3
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 00000000..65275b38
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 00000000..5b58e760
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 00000000..09d10225
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 00000000..b5dd854b
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..bcf6b7f0
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 00000000..cd1396bc
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 00000000..2242d2f9
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..8ff3a830
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..e7e693a7
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..819171ad
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..4def8c8f
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 00000000..4eae28fd
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 00000000..accf80e4
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 00000000..8c82ec3d
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 00000000..8fc0a9b8
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 00000000..92b712e5
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 00000000..78bbeba1
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 00000000..c4ba8e64
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 00000000..f026a41c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 00000000..c8b9f689
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 00000000..f6d2f329
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..39178bf3
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 00000000..f54f4f9d
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..65cf0c1e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..d0416237
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..9dff893e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..a1f8c333
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 00000000..28a3bbf2
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 00000000..29a4e529
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 00000000..162ab984
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 00000000..a1866ba4
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..d967ae70
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..5baef9ff
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 00000000..987b2bc2
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_focused_holo.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_focused_holo.9.png
new file mode 100644
index 00000000..8b050e85
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_focused_holo.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 00000000..00e370a1
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 00000000..719c7b5e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 00000000..75bd5803
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 00000000..9cc36666
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 00000000..224a0815
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 00000000..f7f306db
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 00000000..ee4bfe7d
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..6940b603
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 00000000..96bec46c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 00000000..eeb74c86
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..4d3d3a4d
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..c5acb84f
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..30328ae1
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..d4f36506
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 00000000..4dc870e4
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 00000000..4e18de21
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 00000000..5fa32665
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 00000000..c11cb2ec
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 00000000..6fd5bfef
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 00000000..99e68cc0
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..16b0f1d4
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 00000000..7b2a480a
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..fe93d873
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..4b2d05ab
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 00000000..16e9e14d
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 00000000..129d30f8
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 00000000..fa6ab02b
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 00000000..77318c71
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..098c25a1
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..76c4eeb2
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..6b8bc0a8
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 00000000..c2393abe
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 00000000..929be19b
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_borderless_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_borderless_material.xml
new file mode 100644
index 00000000..58a33fc6
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_borderless_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_check_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_check_material.xml
new file mode 100644
index 00000000..79bff6a3
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_check_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_colored_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_colored_material.xml
new file mode 100644
index 00000000..c61fa118
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_colored_material.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_default_mtrl_shape.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_default_mtrl_shape.xml
new file mode 100644
index 00000000..82557e0a
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_default_mtrl_shape.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_radio_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_radio_material.xml
new file mode 100644
index 00000000..f479f89b
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_radio_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_internal_bg.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_internal_bg.xml
new file mode 100644
index 00000000..406d4c48
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_internal_bg.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_top_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_top_material.xml
new file mode 100644
index 00000000..2f6f990d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_top_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_dark.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_dark.xml
new file mode 100644
index 00000000..44e7b0eb
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_dark.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_light.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_light.xml
new file mode 100644
index 00000000..4b77a003
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_light.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_edit_text_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_edit_text_material.xml
new file mode 100644
index 00000000..f57d90ab
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_edit_text_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_dark.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_dark.xml
new file mode 100644
index 00000000..abfc1145
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_dark.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_light.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_light.xml
new file mode 100644
index 00000000..bc7298ca
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_light.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml
new file mode 100644
index 00000000..cb40ddc9
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_light.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_light.xml
new file mode 100644
index 00000000..75d91a4e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_dark.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_dark.xml
new file mode 100644
index 00000000..9db88d57
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_dark.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_light.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_light.xml
new file mode 100644
index 00000000..3d19c601
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_light.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_ratingbar_full_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_ratingbar_full_material.xml
new file mode 100644
index 00000000..1e9c5492
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_ratingbar_full_material.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_spinner_textfield_background_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_spinner_textfield_background_material.xml
new file mode 100644
index 00000000..39e07b33
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_spinner_textfield_background_material.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_switch_thumb_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_switch_thumb_material.xml
new file mode 100644
index 00000000..efb827c5
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_switch_thumb_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_tab_indicator_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_tab_indicator_material.xml
new file mode 100644
index 00000000..222452a9
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_tab_indicator_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_text_cursor_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_text_cursor_material.xml
new file mode 100644
index 00000000..6f432b6a
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_text_cursor_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_textfield_search_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_textfield_search_material.xml
new file mode 100644
index 00000000..f31c18b2
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_textfield_search_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_title_item.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_title_item.xml
new file mode 100644
index 00000000..c2578b68
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_title_item.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_up_container.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_up_container.xml
new file mode 100644
index 00000000..6bb35fb3
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_up_container.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_view_list_nav_layout.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_view_list_nav_layout.xml
new file mode 100644
index 00000000..6217fc6f
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_view_list_nav_layout.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_item_layout.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_item_layout.xml
new file mode 100644
index 00000000..3529867a
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_item_layout.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_layout.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_layout.xml
new file mode 100644
index 00000000..8dab475d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_layout.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_bar.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_bar.xml
new file mode 100644
index 00000000..51733630
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_bar.xml
@@ -0,0 +1,26 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_close_item_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_close_item_material.xml
new file mode 100644
index 00000000..60c6a633
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_close_item_material.xml
@@ -0,0 +1,26 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view.xml
new file mode 100644
index 00000000..02e428a3
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view.xml
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view_list_item.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view_list_item.xml
new file mode 100644
index 00000000..80f7c97e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view_list_item.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_alert_dialog_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_alert_dialog_material.xml
new file mode 100644
index 00000000..7bc54672
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_alert_dialog_material.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_dialog_title_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_dialog_title_material.xml
new file mode 100644
index 00000000..456c20c1
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_dialog_title_material.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_expanded_menu_layout.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_expanded_menu_layout.xml
new file mode 100644
index 00000000..371d2dfd
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_expanded_menu_layout.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_checkbox.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_checkbox.xml
new file mode 100644
index 00000000..ad96f01a
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_checkbox.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_icon.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_icon.xml
new file mode 100644
index 00000000..73e5488e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_icon.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_layout.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_layout.xml
new file mode 100644
index 00000000..3eb8cd66
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_layout.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_radio.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_radio.xml
new file mode 100644
index 00000000..cd334b17
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_radio.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_popup_menu_item_layout.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_popup_menu_item_layout.xml
new file mode 100644
index 00000000..8d456e29
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_popup_menu_item_layout.xml
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_content_include.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_content_include.xml
new file mode 100644
index 00000000..d692b19d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_content_include.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple.xml
new file mode 100644
index 00000000..212bbb4f
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple_overlay_action_mode.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple_overlay_action_mode.xml
new file mode 100644
index 00000000..1aa46e67
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple_overlay_action_mode.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_toolbar.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_toolbar.xml
new file mode 100644
index 00000000..9f4a3d23
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_toolbar.xml
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_dropdown_item_icons_2line.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_dropdown_item_icons_2line.xml
new file mode 100644
index 00000000..e73fae9d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_dropdown_item_icons_2line.xml
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_view.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_view.xml
new file mode 100644
index 00000000..6d24056c
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_view.xml
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_select_dialog_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_select_dialog_material.xml
new file mode 100644
index 00000000..0af6acab
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_select_dialog_material.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_action.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_action.xml
new file mode 100644
index 00000000..8241bda2
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_action.xml
@@ -0,0 +1,25 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_cancel_action.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_cancel_action.xml
new file mode 100644
index 00000000..fc12dab8
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_cancel_action.xml
@@ -0,0 +1,28 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media.xml
new file mode 100644
index 00000000..e9254d72
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media_narrow.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media_narrow.xml
new file mode 100644
index 00000000..e8cd8e3f
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media_narrow.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_lines.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_lines.xml
new file mode 100644
index 00000000..9514bd86
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_lines.xml
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_media.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_media.xml
new file mode 100644
index 00000000..ff66430c
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_media.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_chronometer.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_chronometer.xml
new file mode 100644
index 00000000..c908ea8a
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_chronometer.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_time.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_time.xml
new file mode 100644
index 00000000..7940789d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_time.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_item_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_item_material.xml
new file mode 100644
index 00000000..69dc43e7
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_item_material.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_multichoice_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_multichoice_material.xml
new file mode 100644
index 00000000..790fe7ba
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_multichoice_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_singlechoice_material.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_singlechoice_material.xml
new file mode 100644
index 00000000..7b2e1958
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_singlechoice_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/support_simple_spinner_dropdown_item.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/support_simple_spinner_dropdown_item.xml
new file mode 100644
index 00000000..e7759e60
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/support_simple_spinner_dropdown_item.xml
@@ -0,0 +1,25 @@
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml
new file mode 100644
index 00000000..5c4ef217
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navigeer tuis"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeer op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "Soek …"
+ "Vee navraag uit"
+ "Soeknavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+ "Vou in"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml
new file mode 100644
index 00000000..f2714ff4
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "%1$s፣ %2$s"
+ "%1$s፣ %2$s፣ %3$s"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "ፈልግ…"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%s ጋር ያጋሩ"
+ "ሰብስብ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml
new file mode 100644
index 00000000..cc49dd50
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "بحث…"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+ "تصغير"
+ "+999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml
new file mode 100644
index 00000000..77f69584
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml
@@ -0,0 +1,22 @@
+
+
+
+
+ "Evə get"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuxarı get"
+ "Daha çox seçim"
+ "Hazırdır"
+ "Hamısına baxın"
+ "Tətbiq seçin"
+ "Axtarış..."
+ "Sorğunu təmizlə"
+ "Axtarış sorğusu"
+ "Axtarış"
+ "Sorğunu göndərin"
+ "Səsli axtarış"
+ "Bununla paylaşın"
+ "Dağıt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml
new file mode 100644
index 00000000..015b2efe
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Придвижване към „Начало“"
+ "„%1$s“ – %2$s"
+ "„%1$s“, „%2$s“ – %3$s"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "Търсете…"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %s"
+ "Свиване"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml
new file mode 100644
index 00000000..4d793ace
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "হোম এ নেভিগেট করুন"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরো বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান চয়ন করুন"
+ "অনুসন্ধান..."
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী অনুসন্ধান করুন"
+ "অনুসন্ধান করুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে ভাগ করুন"
+ "%s এর সাথে ভাগ করুন"
+ "সঙ্কুচিত করুন"
+ "৯৯৯+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml
new file mode 100644
index 00000000..5fd6ffeb
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navega a la pàgina d\'inici"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navega cap a dalt"
+ "Més opcions"
+ "Fet"
+ "Mostra\'ls tots"
+ "Selecciona una aplicació"
+ "Cerca..."
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+ "Replega"
+ "+999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml
new file mode 100644
index 00000000..35721b96
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Přejít na plochu"
+ "%1$s – %2$s"
+ "%1$s, %2$s – %3$s"
+ "Přejít nahoru"
+ "Více možností"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "Vyhledat…"
+ "Smazat dotaz"
+ "Vyhledávací dotaz"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávání"
+ "Sdílet pomocí"
+ "Sdílet pomocí %s"
+ "Sbalit"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml
new file mode 100644
index 00000000..339c6ba7
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Naviger hjem"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Naviger op"
+ "Flere muligheder"
+ "Luk"
+ "Se alle"
+ "Vælg en app"
+ "Søg…"
+ "Ryd forespørgslen"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgslen"
+ "Talesøgning"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml
new file mode 100644
index 00000000..900e2a7b
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Zur Startseite"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle ansehen"
+ "App auswählen"
+ "Suchen…"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suchen"
+ "Suchanfrage senden"
+ "Sprachsuche"
+ "Freigeben für"
+ "Freigeben für %s"
+ "Minimieren"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml
new file mode 100644
index 00000000..242a6ae3
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "Αναζήτηση…"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %s"
+ "Σύμπτυξη"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml
new file mode 100644
index 00000000..81d4dd1a
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 00000000..d13b5bed
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 00000000..1cf86f53
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 00000000..30b3fe19
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navegar a la página principal"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Elige una aplicación."
+ "Buscar…"
+ "Eliminar la consulta"
+ "Consulta de búsqueda"
+ "Búsqueda"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml
new file mode 100644
index 00000000..4ad0d36e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Ir a la pantalla de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "+999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml
new file mode 100644
index 00000000..153c01bc
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navigeerimine avaekraanile"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeerimine üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "Otsige …"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jagamine:"
+ "Jagamine kasutajaga %s"
+ "Ahendamine"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml
new file mode 100644
index 00000000..e4a3dc4a
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Joan orri nagusira"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "Bilatu…"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahots bidezko bilaketa"
+ "Partekatu hauekin"
+ "Partekatu %s erabiltzailearekin"
+ "Tolestu"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml
new file mode 100644
index 00000000..605f7ebb
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "پیمایش به صفحه اصلی"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "انجام شد"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "جستجو…"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی شفاهی"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %s"
+ "کوچک کردن"
+ "۹۹۹+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml
new file mode 100644
index 00000000..021af402
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Siirry etusivulle"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Siirry ylös"
+ "Lisää"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "Haku…"
+ "Tyhjennä kysely"
+ "Hakulauseke"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jakaminen:"
+ "Jakaminen: %s"
+ "Kutista"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 00000000..34fe500e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "Terminé"
+ "Voir toutes les chaînes"
+ "Sélectionnez une application"
+ "Recherche en cours..."
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager"
+ "Partager avec %s"
+ "Réduire"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml
new file mode 100644
index 00000000..485a0297
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "Rechercher…"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+ "Réduire"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml
new file mode 100644
index 00000000..d73ad530
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Ir á páxina de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desprazarse cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todas"
+ "Escoller unha aplicación"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta de busca"
+ "Buscar"
+ "Enviar consulta"
+ "Busca de voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml
new file mode 100644
index 00000000..bf7e07c6
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "હોમ પર નેવિગેટ કરો"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ઉપર નેવિગેટ કરો"
+ "વધુ વિકલ્પો"
+ "થઈ ગયું"
+ "બધું જુઓ"
+ "એક એપ્લિકેશન પસંદ કરો"
+ "શોધો…"
+ "ક્વેરી સાફ કરો"
+ "શોધ ક્વેરી"
+ "શોધો"
+ "ક્વેરી સબમિટ કરો"
+ "વૉઇસ શોધ"
+ "આની સાથે શેર કરો"
+ "%s સાથે શેર કરો"
+ "સંકુચિત કરો"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-h720dp/values-h720dp.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-h720dp/values-h720dp.xml
new file mode 100644
index 00000000..e6e77fbe
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-h720dp/values-h720dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hdpi/values-hdpi.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hdpi/values-hdpi.xml
new file mode 100644
index 00000000..39b081ac
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hdpi/values-hdpi.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml
new file mode 100644
index 00000000..4e0ed98c
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "मुख्यपृष्ठ पर नेविगेट करें"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ऊपर नेविगेट करें"
+ "अधिक विकल्प"
+ "पूर्ण"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "खोजा जा रहा है…"
+ "क्वेरी साफ़ करें"
+ "खोज क्वेरी"
+ "खोजें"
+ "क्वेरी सबमिट करें"
+ "ध्वनि खोज"
+ "इसके द्वारा साझा करें"
+ "%s के साथ साझा करें"
+ "संक्षिप्त करें"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml
new file mode 100644
index 00000000..d3b21cd7
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Idi na početnu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Idi gore"
+ "Dodatne opcije"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "Pretražite…"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraživanje"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeljenje sa"
+ "Dijeljenje sa: %s"
+ "Sažmi"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml
new file mode 100644
index 00000000..9c05bc11
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Ugrás a főoldalra"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Felfelé mozgatás"
+ "További lehetőségek"
+ "Kész"
+ "Összes megtekintése"
+ "Válasszon ki egy alkalmazást"
+ "Keresés…"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következővel: %s"
+ "Összecsukás"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml
new file mode 100644
index 00000000..6dde690e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Ուղղվել տուն"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Կատարված է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "Որոնում..."
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Տարածել"
+ "Տարածել ըստ %s"
+ "Թաքցնել"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml
new file mode 100644
index 00000000..e8017405
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navigasi ke beranda"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi naik"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "Telusuri..."
+ "Hapus kueri"
+ "Kueri penelusuran"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan dengan %s"
+ "Ciutkan"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml
new file mode 100644
index 00000000..6c3d5d14
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Fara heim"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "Leita…"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leita"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+ "Minnka"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml
new file mode 100644
index 00000000..4a4e23fa
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Vai alla home page"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Vai in alto"
+ "Altre opzioni"
+ "Fine"
+ "Visualizza tutte"
+ "Scegli un\'applicazione"
+ "Cerca…"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi con %s"
+ "Comprimi"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml
new file mode 100644
index 00000000..3bf31e8a
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "נווט לדף הבית"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכל"
+ "בחר אפליקציה"
+ "חפש…"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חפש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %s"
+ "כווץ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml
new file mode 100644
index 00000000..c6d4becf
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "ホームへ移動"
+ "%1$s、%2$s"
+ "%1$s、%2$s、%3$s"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "検索…"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%sと共有"
+ "折りたたむ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml
new file mode 100644
index 00000000..31bca236
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "მთავარზე ნავიგაცია"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "ძიება..."
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "%s-თან გაზიარება"
+ "აკეცვა"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml
new file mode 100644
index 00000000..63ca8766
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Негізгі бетте қозғалу"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Дайын"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "Іздеу…"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%s бөлісу"
+ "Тасалау"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml
new file mode 100644
index 00000000..430bc859
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "រកមើលទៅដើម"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "ស្វែងរក…"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %s"
+ "បង្រួម"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml
new file mode 100644
index 00000000..1e758d85
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಹುಡುಕಿ…"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "ಸಂಕುಚಿಸು"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml
new file mode 100644
index 00000000..afe75f4b
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "홈 탐색"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "검색..."
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%s와(과) 공유"
+ "접기"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml
new file mode 100644
index 00000000..2b45eee9
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Үйгө багыттоо"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "Издөө…"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%s аркылуу бөлүшүү"
+ "Жыйнап коюу"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml
new file mode 100644
index 00000000..2c34fad4
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml
@@ -0,0 +1,19 @@
+
+
+
+
+ true
+
+
+ true
+
+
+ 48dp
+
+
+ 32dp
+
+
+ 12dp
+ 14dp
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml
new file mode 100644
index 00000000..3a6be7d6
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml
@@ -0,0 +1,22 @@
+
+
+
+
+ true
+
+
+ true
+ 440dp
+
+
+ 192dip
+ - 60%
+ - 90%
+ - 60%
+ - 90%
+ 4
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml
new file mode 100644
index 00000000..f9e37f53
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ຊອກຫາ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນກັບ %s"
+ "ຫຍໍ້"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml
new file mode 100644
index 00000000..c3a3c702
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Eiti į pagrindinį puslapį"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "Ieškoti..."
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant „%s“"
+ "Sutraukti"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml
new file mode 100644
index 00000000..43ed71d0
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "Meklējiet…"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar %s"
+ "Sakļaut"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml
new file mode 100644
index 00000000..476b6a5d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml
@@ -0,0 +1,21 @@
+
+
+
+
+ "Движи се кон дома"
+ "%1$s, %2$s, %3$s"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "Пребарување…"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+ "Собери"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml
new file mode 100644
index 00000000..e48ba9d7
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതല് ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "തിരയുക…"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "ശബ്ദ തിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s എന്നതുമായി പങ്കിടുക"
+ "ചുരുക്കുക"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml
new file mode 100644
index 00000000..3c28ca02
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Нүүр хуудас руу шилжих"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "Хайх..."
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+ "Хумих"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml
new file mode 100644
index 00000000..50e8b016
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "मुख्यपृष्ठ नेव्हिगेट करा"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "शोधा…"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह सामायिक करा"
+ "%s सह सामायिक करा"
+ "संक्षिप्त करा"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml
new file mode 100644
index 00000000..51b288c0
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navigasi skrin utama"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "Cari…"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+ "Runtuhkan"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml
new file mode 100644
index 00000000..7fdc0b6a
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "မူလနေရာကို သွားရန်"
+ "%1$s၊ %2$s"
+ "%1$s ၊ %2$s ၊ %3$s"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ရှာဖွေပါ..."
+ "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ကို မျှဝေပါရန်"
+ "ခေါက်ရန်"
+ "၉၉၉+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml
new file mode 100644
index 00000000..f8f40bd2
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Gå til startsiden"
+ "%1$s – %2$s"
+ "%1$s – %2$s – %3$s"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "Søk …"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml
new file mode 100644
index 00000000..6fb0cc31
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "गृह खोज्नुहोस्"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "खोज्नुहोस्..."
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग साझेदारी गर्नुहोस्"
+ "संक्षिप्त पार्नुहोस्"
+ "९९९+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml
new file mode 100644
index 00000000..7a25b25b
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navigeren naar startpositie"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Gereed"
+ "Alles weergeven"
+ "Een app selecteren"
+ "Zoeken…"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+ "Samenvouwen"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml
new file mode 100644
index 00000000..889b4187
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "ਹੋਰ ਚੋਣਾਂ"
+ "ਹੋ ਗਿਆ"
+ "ਸਭ ਦੇਖੋ"
+ "ਇੱਕ ਐਪ ਚੁਣੋ"
+ "ਖੋਜ…"
+ "ਸਵਾਲ ਹਟਾਓ"
+ "ਸਵਾਲ ਖੋਜੋ"
+ "ਖੋਜੋ"
+ "ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"
+ "ਵੌਇਸ ਖੋਜ"
+ "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "ਨਸ਼ਟ ਕਰੋ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml
new file mode 100644
index 00000000..c0001ea9
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Przejdź do strony głównej"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Zobacz wszystkie"
+ "Wybierz aplikację"
+ "Szukaj…"
+ "Wyczyść zapytanie"
+ "Wyszukiwane hasło"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij dla"
+ "Udostępnij dla %s"
+ "Zwiń"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-port/values-port.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-port/values-port.xml
new file mode 100644
index 00000000..55f9e393
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-port/values-port.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ false
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 00000000..c985fa6a
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Escolher uma aplicação"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com %s"
+ "Reduzir"
+ "+999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml
new file mode 100644
index 00000000..f03fced8
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml
new file mode 100644
index 00000000..9e50909f
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Navigați la ecranul de pornire"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Terminat"
+ "Afișați-le pe toate"
+ "Alegeți o aplicație"
+ "Căutați…"
+ "Ștergeți interogarea"
+ "Interogare de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți la %s"
+ "Restrângeți"
+ "˃999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml
new file mode 100644
index 00000000..d7119294
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Перейти на главный экран"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "Поиск"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ пользователю %s"
+ "Свернуть"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml
new file mode 100644
index 00000000..293b1ee1
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "සොයන්න..."
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%s සමඟ බෙදාගන්න"
+ "හකුළන්න"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml
new file mode 100644
index 00000000..6c25c44d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Prejsť na plochu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Prejsť hore"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetko"
+ "Zvoľte aplikáciu"
+ "Vyhľadať…"
+ "Vymazať dopyt"
+ "Vyhľadávací dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať pomocou"
+ "Zdieľať pomocou %s"
+ "Zbaliť"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml
new file mode 100644
index 00000000..3b53faeb
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Krmarjenje domov"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Krmarjenje navzgor"
+ "Več možnosti"
+ "Končano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "Iskanje …"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z"
+ "Deljenje z:"
+ "Strni"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml
new file mode 100644
index 00000000..bb837707
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Orientohu për në shtëpi"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ngjitu lart"
+ "Opsione të tjera"
+ "U krye!"
+ "Shikoji të gjitha"
+ "Zgjidh një aplikacion"
+ "Kërko..."
+ "Pastro pyetjen"
+ "Kërko pyetjen"
+ "Kërko"
+ "Dërgo pyetjen"
+ "Kërkim me zë"
+ "Shpërnda publikisht me"
+ "Shpërnda publikisht me %s"
+ "Shpalos"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml
new file mode 100644
index 00000000..b5fd2bf5
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Одлазак на Почетну"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "Претражите..."
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дели са апликацијом %s"
+ "Скупи"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml
new file mode 100644
index 00000000..202891ba
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Visa startsidan"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klart"
+ "Visa alla"
+ "Välj en app"
+ "Sök …"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+ "Komprimera"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml
new file mode 100644
index 00000000..2cfd758f
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Nenda mwanzo"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Nenda juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "Tafuta…"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Tafuta kwa kutamka"
+ "Shiriki na:"
+ "Shiriki na %s"
+ "Kunja"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml
new file mode 100644
index 00000000..543291cc
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml
@@ -0,0 +1,17 @@
+
+
+
+
+ 24dp
+ 64dp
+ 8dp
+ 8dp
+
+
+ 580dp
+
+
+ 16dp
+ 20dp
+ 5
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml
new file mode 100644
index 00000000..630be976
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "மேலே வழிசெலுத்து"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "தேடு..."
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%s உடன் பகிர்"
+ "சுருக்கு"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml
new file mode 100644
index 00000000..05265267
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "శోధించు..."
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "శోధించు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%sతో భాగస్వామ్యం చేయి"
+ "కుదించండి"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml
new file mode 100644
index 00000000..607e5ace
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "นำทางไปหน้าแรก"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ค้นหา…"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์กับ %s"
+ "ยุบ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml
new file mode 100644
index 00000000..6b636031
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Mag-navigate patungo sa home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Mag-navigate pataas"
+ "Higit pang mga opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng isang app"
+ "Maghanap…"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi sa/kay %s"
+ "I-collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml
new file mode 100644
index 00000000..1f47483b
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Ana ekrana git"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Tamamlandı"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "Ara…"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Şununla paylaş"
+ "%s ile paylaş"
+ "Daralt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml
new file mode 100644
index 00000000..3d1f9625
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Перейти на головний"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "Пошук…"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Надіслати через %s"
+ "Згорнути"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml
new file mode 100644
index 00000000..4227e97e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "تلاش کریں…"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%s کے ساتھ اشتراک کریں"
+ "سکیڑیں"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml
new file mode 100644
index 00000000..86240715
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml
@@ -0,0 +1,22 @@
+
+
+
+
+ "Boshiga o‘tish"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuqoriga o‘tish"
+ "Qo‘shimcha sozlamalar"
+ "Tayyor"
+ "Barchasini ko‘rish"
+ "Dastur tanlang"
+ "Qidirish…"
+ "So‘rovni tozalash"
+ "So‘rovni izlash"
+ "Izlash"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Bo‘lishish:"
+ "Yig‘ish"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml
new file mode 100644
index 00000000..e96fc19e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml
@@ -0,0 +1,171 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v12/values-v12.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v12/values-v12.xml
new file mode 100644
index 00000000..2b88c077
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v12/values-v12.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml
new file mode 100644
index 00000000..005b9038
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml
new file mode 100644
index 00000000..9b88aec1
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v18/values-v18.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v18/values-v18.xml
new file mode 100644
index 00000000..25a7e7dc
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v18/values-v18.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 0px
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml
new file mode 100644
index 00000000..df2a33d3
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml
@@ -0,0 +1,268 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v22/values-v22.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v22/values-v22.xml
new file mode 100644
index 00000000..671027fc
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v22/values-v22.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml
new file mode 100644
index 00000000..4ea0cecc
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml
new file mode 100644
index 00000000..1e223a30
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Điều hướng về trang chủ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Điều hướng lên trên"
+ "Thêm tùy chọn"
+ "Xong"
+ "Xem tất cả"
+ "Chọn một ứng dụng"
+ "Tìm kiếm…"
+ "Xóa truy vấn"
+ "Tìm kiếm truy vấn"
+ "Tìm kiếm"
+ "Gửi truy vấn"
+ "Tìm kiếm bằng giọng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+ "Thu gọn"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w360dp/values-w360dp.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w360dp/values-w360dp.xml
new file mode 100644
index 00000000..89c59b1d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w360dp/values-w360dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 3
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w480dp/values-w480dp.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w480dp/values-w480dp.xml
new file mode 100644
index 00000000..43dd2fa1
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w480dp/values-w480dp.xml
@@ -0,0 +1,9 @@
+
+
+
+
+ true
+
+
+ true
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w500dp/values-w500dp.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w500dp/values-w500dp.xml
new file mode 100644
index 00000000..afb11e7a
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w500dp/values-w500dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 4
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w600dp/values-w600dp.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w600dp/values-w600dp.xml
new file mode 100644
index 00000000..9cc816f7
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w600dp/values-w600dp.xml
@@ -0,0 +1,7 @@
+
+
+
+
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w720dp/values-w720dp.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w720dp/values-w720dp.xml
new file mode 100644
index 00000000..1782c24b
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w720dp/values-w720dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ false
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge-land/values-xlarge-land.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge-land/values-xlarge-land.xml
new file mode 100644
index 00000000..c63bb08b
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge-land/values-xlarge-land.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 256dip
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml
new file mode 100644
index 00000000..bbaa7f0e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml
@@ -0,0 +1,14 @@
+
+
+
+
+ false
+
+
+ 192dip
+ - 60%
+ - 90%
+ - 50%
+ - 70%
+ 5
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 00000000..d5b02030
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "转到主屏幕"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "转到上一层级"
+ "更多选项"
+ "完成"
+ "查看全部"
+ "选择应用"
+ "搜索…"
+ "清除查询"
+ "搜索查询"
+ "搜索"
+ "提交查询"
+ "语音搜索"
+ "分享方式"
+ "通过%s分享"
+ "收起"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 00000000..1045a240
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "瀏覽主頁"
+ "%1$s:%2$s"
+ "%1$s (%2$s):%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "與「%s」分享"
+ "收合"
+ "999 +"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 00000000..d4d06ca7
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "瀏覽首頁"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "查看全部"
+ "選擇應用程式"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "選擇分享對象"
+ "與「%s」分享"
+ "收合"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml
new file mode 100644
index 00000000..41c1d9e3
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Zulazulela ekhaya"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Zulazulela phezulu"
+ "Izinketho eziningi"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha uhlelo lokusebenza"
+ "Iyasesha..."
+ "Sula inkinga"
+ "Umbuzo wosesho"
+ "Sesha"
+ "Hambisa umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no-"
+ "Yabelana no-%s"
+ "Goqa"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml
new file mode 100644
index 00000000..a2b5128b
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml
@@ -0,0 +1,1534 @@
+
+
+
+
+
+
+
+
+
+
+ true
+ false
+ true
+
+
+ true
+ false
+ true
+
+
+ false
+
+
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+
+
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ @color/material_grey_800
+ @android:color/white
+ @color/material_grey_850
+ @color/material_grey_50
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ @android:color/white
+ @android:color/black
+ #6680cbc4
+ #66009688
+ @color/bright_foreground_disabled_material_dark
+ @color/bright_foreground_disabled_material_light
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #fff5f5f5
+ #ffe0e0e0
+ #fffafafa
+ #ff757575
+ #ff424242
+ #ff303030
+ #ff212121
+ @android:color/black
+ @color/material_grey_600
+ @color/material_grey_900
+ @color/material_grey_100
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #42ffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 16dp
+ 56dp
+ 0dp
+ 0dp
+ 16dp
+ 10dp
+ 6dp
+
+
+ 40dp
+ 48dp
+ 180dp
+
+
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+
+
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+
+
+ 320dp
+
+
+ 2dp
+ 4dp
+ 4dp
+ 8dp
+ - 65%
+ - 95%
+ 24dp
+ 18dp
+
+
+ - 0.30
+ - 0.26
+
+
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+
+
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+
+
+ 296dp
+ 320dip
+ 160dip
+ 3dp
+
+
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+
+
+ - 80%
+ - 100%
+ - 320dp
+ - 320dp
+
+
+ - 0.30
+ - 0.26
+ - 0.26
+ - 0.20
+ - 0.12
+
+
+ 64dp
+ 64dp
+ 12dp
+
+
+ #3333B5E5
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+
+
+ 2
+
+
+ 127
+ 999
+
+
+ Navigate home
+ %1$s, %2$s
+ %1$s, %2$s, %3$s
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ 999+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml
new file mode 100644
index 00000000..f2732697
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aapt/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aapt/AndroidManifest.xml
new file mode 100644
index 00000000..f2732697
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aapt/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/MediaMetadataCompat.aidl b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/MediaMetadataCompat.aidl
new file mode 100644
index 00000000..6d36b97e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/MediaMetadataCompat.aidl
@@ -0,0 +1,18 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media;
+
+parcelable MediaMetadataCompat;
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/RatingCompat.aidl b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/RatingCompat.aidl
new file mode 100644
index 00000000..223fd5c9
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/RatingCompat.aidl
@@ -0,0 +1,18 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media;
+
+parcelable RatingCompat;
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/session/MediaSessionCompat.aidl b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/session/MediaSessionCompat.aidl
new file mode 100644
index 00000000..d0c2f6fc
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/session/MediaSessionCompat.aidl
@@ -0,0 +1,20 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media.session;
+
+parcelable MediaSessionCompat.Token;
+parcelable MediaSessionCompat.QueueItem;
+parcelable MediaSessionCompat.ResultReceiverWrapper;
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl
new file mode 100644
index 00000000..2e77c4fb
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl
@@ -0,0 +1,18 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media.session;
+
+parcelable ParcelableVolumeInfo;
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl
new file mode 100644
index 00000000..3d4ef595
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl
@@ -0,0 +1,18 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media.session;
+
+parcelable PlaybackStateCompat;
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/annotations.zip b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/annotations.zip
new file mode 100644
index 00000000..383de08a
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/annotations.zip differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/jars/classes.jar b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/jars/classes.jar
new file mode 100644
index 00000000..311d0483
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/jars/classes.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/jars/libs/internal_impl-23.0.1.jar b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/jars/libs/internal_impl-23.0.1.jar
new file mode 100644
index 00000000..98af5bda
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/jars/libs/internal_impl-23.0.1.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/AndroidManifest.xml
new file mode 100644
index 00000000..5035242d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/AndroidManifest.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/R.txt b/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/R.txt
new file mode 100644
index 00000000..7d86eae2
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/R.txt
@@ -0,0 +1,20 @@
+int[] styleable TextAppearance { 0x01010095, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164 }
+int styleable TextAppearance_android_shadowColor 3
+int styleable TextAppearance_android_shadowDx 4
+int styleable TextAppearance_android_shadowDy 5
+int styleable TextAppearance_android_shadowRadius 6
+int styleable TextAppearance_android_textColor 2
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_textStyle 1
+int[] styleable TextStyle { 0x01010034, 0x01010095, 0x01010097, 0x01010098, 0x010100ab, 0x01010153, 0x0101015d, 0x01010161, 0x01010162, 0x01010163, 0x01010164 }
+int styleable TextStyle_android_ellipsize 4
+int styleable TextStyle_android_maxLines 5
+int styleable TextStyle_android_shadowColor 7
+int styleable TextStyle_android_shadowDx 8
+int styleable TextStyle_android_shadowDy 9
+int styleable TextStyle_android_shadowRadius 10
+int styleable TextStyle_android_singleLine 6
+int styleable TextStyle_android_textAppearance 0
+int styleable TextStyle_android_textColor 3
+int styleable TextStyle_android_textSize 1
+int styleable TextStyle_android_textStyle 2
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/aapt/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/aapt/AndroidManifest.xml
new file mode 100644
index 00000000..5035242d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/aapt/AndroidManifest.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/annotations.zip b/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/annotations.zip
new file mode 100644
index 00000000..cf48929c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/annotations.zip differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/jars/classes.jar b/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/jars/classes.jar
new file mode 100644
index 00000000..2e08052e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/jars/classes.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/res/values/values.xml b/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/res/values/values.xml
new file mode 100644
index 00000000..6f2b1c48
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/res/values/values.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/AndroidManifest.xml
new file mode 100644
index 00000000..e7d3ca49
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/R.txt b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/R.txt
new file mode 100644
index 00000000..e7c1bc4b
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/R.txt
@@ -0,0 +1,65 @@
+int attr actualImageResource 0x7f01001a
+int attr actualImageScaleType 0x7f01000b
+int attr actualImageUri 0x7f010019
+int attr backgroundImage 0x7f01000c
+int attr fadeDuration 0x7f010000
+int attr failureImage 0x7f010006
+int attr failureImageScaleType 0x7f010007
+int attr overlayImage 0x7f01000d
+int attr placeholderImage 0x7f010002
+int attr placeholderImageScaleType 0x7f010003
+int attr pressedStateOverlayImage 0x7f01000e
+int attr progressBarAutoRotateInterval 0x7f01000a
+int attr progressBarImage 0x7f010008
+int attr progressBarImageScaleType 0x7f010009
+int attr retryImage 0x7f010004
+int attr retryImageScaleType 0x7f010005
+int attr roundAsCircle 0x7f01000f
+int attr roundBottomLeft 0x7f010014
+int attr roundBottomRight 0x7f010013
+int attr roundTopLeft 0x7f010011
+int attr roundTopRight 0x7f010012
+int attr roundWithOverlayColor 0x7f010015
+int attr roundedCornerRadius 0x7f010010
+int attr roundingBorderColor 0x7f010017
+int attr roundingBorderPadding 0x7f010018
+int attr roundingBorderWidth 0x7f010016
+int attr viewAspectRatio 0x7f010001
+int id center 0x7f020000
+int id centerCrop 0x7f020001
+int id centerInside 0x7f020002
+int id fitCenter 0x7f020003
+int id fitEnd 0x7f020004
+int id fitStart 0x7f020005
+int id fitXY 0x7f020006
+int id focusCrop 0x7f020007
+int id none 0x7f020008
+int[] styleable GenericDraweeHierarchy { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018 }
+int styleable GenericDraweeHierarchy_actualImageScaleType 11
+int styleable GenericDraweeHierarchy_backgroundImage 12
+int styleable GenericDraweeHierarchy_fadeDuration 0
+int styleable GenericDraweeHierarchy_failureImage 6
+int styleable GenericDraweeHierarchy_failureImageScaleType 7
+int styleable GenericDraweeHierarchy_overlayImage 13
+int styleable GenericDraweeHierarchy_placeholderImage 2
+int styleable GenericDraweeHierarchy_placeholderImageScaleType 3
+int styleable GenericDraweeHierarchy_pressedStateOverlayImage 14
+int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 10
+int styleable GenericDraweeHierarchy_progressBarImage 8
+int styleable GenericDraweeHierarchy_progressBarImageScaleType 9
+int styleable GenericDraweeHierarchy_retryImage 4
+int styleable GenericDraweeHierarchy_retryImageScaleType 5
+int styleable GenericDraweeHierarchy_roundAsCircle 15
+int styleable GenericDraweeHierarchy_roundBottomLeft 20
+int styleable GenericDraweeHierarchy_roundBottomRight 19
+int styleable GenericDraweeHierarchy_roundTopLeft 17
+int styleable GenericDraweeHierarchy_roundTopRight 18
+int styleable GenericDraweeHierarchy_roundWithOverlayColor 21
+int styleable GenericDraweeHierarchy_roundedCornerRadius 16
+int styleable GenericDraweeHierarchy_roundingBorderColor 23
+int styleable GenericDraweeHierarchy_roundingBorderPadding 24
+int styleable GenericDraweeHierarchy_roundingBorderWidth 22
+int styleable GenericDraweeHierarchy_viewAspectRatio 1
+int[] styleable SimpleDraweeView { 0x7f010019, 0x7f01001a }
+int styleable SimpleDraweeView_actualImageResource 1
+int styleable SimpleDraweeView_actualImageUri 0
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/jars/classes.jar b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/jars/classes.jar
new file mode 100644
index 00000000..9acdc42b
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/jars/classes.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/res/values/values.xml b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/res/values/values.xml
new file mode 100644
index 00000000..01b05c47
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/res/values/values.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/1.3.0/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/1.3.0/AndroidManifest.xml
new file mode 100644
index 00000000..495ffaa1
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/1.3.0/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/1.3.0/annotations.zip b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/1.3.0/annotations.zip
new file mode 100644
index 00000000..9abc1c2e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/1.3.0/annotations.zip differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/1.3.0/jars/classes.jar b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/1.3.0/jars/classes.jar
new file mode 100644
index 00000000..afd51adc
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/1.3.0/jars/classes.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/1.3.0/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/1.3.0/AndroidManifest.xml
new file mode 100644
index 00000000..ad7610fc
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/1.3.0/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/1.3.0/R.txt b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/1.3.0/R.txt
new file mode 100644
index 00000000..e7c1bc4b
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/1.3.0/R.txt
@@ -0,0 +1,65 @@
+int attr actualImageResource 0x7f01001a
+int attr actualImageScaleType 0x7f01000b
+int attr actualImageUri 0x7f010019
+int attr backgroundImage 0x7f01000c
+int attr fadeDuration 0x7f010000
+int attr failureImage 0x7f010006
+int attr failureImageScaleType 0x7f010007
+int attr overlayImage 0x7f01000d
+int attr placeholderImage 0x7f010002
+int attr placeholderImageScaleType 0x7f010003
+int attr pressedStateOverlayImage 0x7f01000e
+int attr progressBarAutoRotateInterval 0x7f01000a
+int attr progressBarImage 0x7f010008
+int attr progressBarImageScaleType 0x7f010009
+int attr retryImage 0x7f010004
+int attr retryImageScaleType 0x7f010005
+int attr roundAsCircle 0x7f01000f
+int attr roundBottomLeft 0x7f010014
+int attr roundBottomRight 0x7f010013
+int attr roundTopLeft 0x7f010011
+int attr roundTopRight 0x7f010012
+int attr roundWithOverlayColor 0x7f010015
+int attr roundedCornerRadius 0x7f010010
+int attr roundingBorderColor 0x7f010017
+int attr roundingBorderPadding 0x7f010018
+int attr roundingBorderWidth 0x7f010016
+int attr viewAspectRatio 0x7f010001
+int id center 0x7f020000
+int id centerCrop 0x7f020001
+int id centerInside 0x7f020002
+int id fitCenter 0x7f020003
+int id fitEnd 0x7f020004
+int id fitStart 0x7f020005
+int id fitXY 0x7f020006
+int id focusCrop 0x7f020007
+int id none 0x7f020008
+int[] styleable GenericDraweeHierarchy { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018 }
+int styleable GenericDraweeHierarchy_actualImageScaleType 11
+int styleable GenericDraweeHierarchy_backgroundImage 12
+int styleable GenericDraweeHierarchy_fadeDuration 0
+int styleable GenericDraweeHierarchy_failureImage 6
+int styleable GenericDraweeHierarchy_failureImageScaleType 7
+int styleable GenericDraweeHierarchy_overlayImage 13
+int styleable GenericDraweeHierarchy_placeholderImage 2
+int styleable GenericDraweeHierarchy_placeholderImageScaleType 3
+int styleable GenericDraweeHierarchy_pressedStateOverlayImage 14
+int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 10
+int styleable GenericDraweeHierarchy_progressBarImage 8
+int styleable GenericDraweeHierarchy_progressBarImageScaleType 9
+int styleable GenericDraweeHierarchy_retryImage 4
+int styleable GenericDraweeHierarchy_retryImageScaleType 5
+int styleable GenericDraweeHierarchy_roundAsCircle 15
+int styleable GenericDraweeHierarchy_roundBottomLeft 20
+int styleable GenericDraweeHierarchy_roundBottomRight 19
+int styleable GenericDraweeHierarchy_roundTopLeft 17
+int styleable GenericDraweeHierarchy_roundTopRight 18
+int styleable GenericDraweeHierarchy_roundWithOverlayColor 21
+int styleable GenericDraweeHierarchy_roundedCornerRadius 16
+int styleable GenericDraweeHierarchy_roundingBorderColor 23
+int styleable GenericDraweeHierarchy_roundingBorderPadding 24
+int styleable GenericDraweeHierarchy_roundingBorderWidth 22
+int styleable GenericDraweeHierarchy_viewAspectRatio 1
+int[] styleable SimpleDraweeView { 0x7f010019, 0x7f01001a }
+int styleable SimpleDraweeView_actualImageResource 1
+int styleable SimpleDraweeView_actualImageUri 0
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/1.3.0/jars/classes.jar b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/1.3.0/jars/classes.jar
new file mode 100644
index 00000000..4372ad4f
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/1.3.0/jars/classes.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-base/1.3.0/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-base/1.3.0/AndroidManifest.xml
new file mode 100644
index 00000000..52bbe0fe
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-base/1.3.0/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-base/1.3.0/annotations.zip b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-base/1.3.0/annotations.zip
new file mode 100644
index 00000000..78653211
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-base/1.3.0/annotations.zip differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-base/1.3.0/jars/classes.jar b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-base/1.3.0/jars/classes.jar
new file mode 100644
index 00000000..f105643e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-base/1.3.0/jars/classes.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp3/1.3.0/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp3/1.3.0/AndroidManifest.xml
new file mode 100644
index 00000000..1675d9de
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp3/1.3.0/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp3/1.3.0/jars/classes.jar b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp3/1.3.0/jars/classes.jar
new file mode 100644
index 00000000..00fe601a
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp3/1.3.0/jars/classes.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/AndroidManifest.xml
new file mode 100644
index 00000000..69e2e081
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/annotations.zip b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/annotations.zip
new file mode 100644
index 00000000..02ed6881
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/annotations.zip differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jars/classes.jar b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jars/classes.jar
new file mode 100644
index 00000000..5ddf4804
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jars/classes.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/arm64-v8a/libimagepipeline.so b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/arm64-v8a/libimagepipeline.so
new file mode 100644
index 00000000..d23b724e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/arm64-v8a/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/armeabi-v7a/libimagepipeline.so b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/armeabi-v7a/libimagepipeline.so
new file mode 100644
index 00000000..e2b23173
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/armeabi-v7a/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/armeabi/libimagepipeline.so b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/armeabi/libimagepipeline.so
new file mode 100644
index 00000000..1eeeb182
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/armeabi/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/x86/libimagepipeline.so b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/x86/libimagepipeline.so
new file mode 100644
index 00000000..45eb0f30
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/x86/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/x86_64/libimagepipeline.so b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/x86_64/libimagepipeline.so
new file mode 100644
index 00000000..442555a7
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/jni/x86_64/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/AndroidManifest.xml
new file mode 100644
index 00000000..1fd12754
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/AndroidManifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/R.txt b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/R.txt
new file mode 100644
index 00000000..071203ed
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/R.txt
@@ -0,0 +1,1339 @@
+int anim abc_fade_in 0x7f040000
+int anim abc_fade_out 0x7f040001
+int anim abc_grow_fade_in_from_bottom 0x7f040002
+int anim abc_popup_enter 0x7f040003
+int anim abc_popup_exit 0x7f040004
+int anim abc_shrink_fade_out_from_bottom 0x7f040005
+int anim abc_slide_in_bottom 0x7f040006
+int anim abc_slide_in_top 0x7f040007
+int anim abc_slide_out_bottom 0x7f040008
+int anim abc_slide_out_top 0x7f040009
+int anim catalyst_fade_in 0x7f04000a
+int anim catalyst_fade_out 0x7f04000b
+int anim catalyst_push_up_in 0x7f04000c
+int anim catalyst_push_up_out 0x7f04000d
+int anim catalyst_slide_down 0x7f04000e
+int anim catalyst_slide_up 0x7f04000f
+int attr actionBarDivider 0x7f01007d
+int attr actionBarItemBackground 0x7f01007e
+int attr actionBarPopupTheme 0x7f010077
+int attr actionBarSize 0x7f01007c
+int attr actionBarSplitStyle 0x7f010079
+int attr actionBarStyle 0x7f010078
+int attr actionBarTabBarStyle 0x7f010073
+int attr actionBarTabStyle 0x7f010072
+int attr actionBarTabTextStyle 0x7f010074
+int attr actionBarTheme 0x7f01007a
+int attr actionBarWidgetTheme 0x7f01007b
+int attr actionButtonStyle 0x7f010097
+int attr actionDropDownStyle 0x7f010093
+int attr actionLayout 0x7f01004c
+int attr actionMenuTextAppearance 0x7f01007f
+int attr actionMenuTextColor 0x7f010080
+int attr actionModeBackground 0x7f010083
+int attr actionModeCloseButtonStyle 0x7f010082
+int attr actionModeCloseDrawable 0x7f010085
+int attr actionModeCopyDrawable 0x7f010087
+int attr actionModeCutDrawable 0x7f010086
+int attr actionModeFindDrawable 0x7f01008b
+int attr actionModePasteDrawable 0x7f010088
+int attr actionModePopupWindowStyle 0x7f01008d
+int attr actionModeSelectAllDrawable 0x7f010089
+int attr actionModeShareDrawable 0x7f01008a
+int attr actionModeSplitBackground 0x7f010084
+int attr actionModeStyle 0x7f010081
+int attr actionModeWebSearchDrawable 0x7f01008c
+int attr actionOverflowButtonStyle 0x7f010075
+int attr actionOverflowMenuStyle 0x7f010076
+int attr actionProviderClass 0x7f01004e
+int attr actionViewClass 0x7f01004d
+int attr activityChooserViewStyle 0x7f01009f
+int attr actualImageResource 0x7f010060
+int attr actualImageScaleType 0x7f01003a
+int attr actualImageUri 0x7f01005f
+int attr alertDialogButtonGroupStyle 0x7f0100c1
+int attr alertDialogCenterButtons 0x7f0100c2
+int attr alertDialogStyle 0x7f0100c0
+int attr alertDialogTheme 0x7f0100c3
+int attr arrowHeadLength 0x7f01002b
+int attr arrowShaftLength 0x7f01002c
+int attr autoCompleteTextViewStyle 0x7f0100c8
+int attr background 0x7f01000c
+int attr backgroundImage 0x7f01003b
+int attr backgroundSplit 0x7f01000e
+int attr backgroundStacked 0x7f01000d
+int attr backgroundTint 0x7f0100e4
+int attr backgroundTintMode 0x7f0100e5
+int attr barLength 0x7f01002d
+int attr borderlessButtonStyle 0x7f01009c
+int attr buttonBarButtonStyle 0x7f010099
+int attr buttonBarNegativeButtonStyle 0x7f0100c6
+int attr buttonBarNeutralButtonStyle 0x7f0100c7
+int attr buttonBarPositiveButtonStyle 0x7f0100c5
+int attr buttonBarStyle 0x7f010098
+int attr buttonPanelSideLayout 0x7f01001f
+int attr buttonStyle 0x7f0100c9
+int attr buttonStyleSmall 0x7f0100ca
+int attr buttonTint 0x7f010025
+int attr buttonTintMode 0x7f010026
+int attr checkboxStyle 0x7f0100cb
+int attr checkedTextViewStyle 0x7f0100cc
+int attr closeIcon 0x7f010056
+int attr closeItemLayout 0x7f01001c
+int attr collapseContentDescription 0x7f0100db
+int attr collapseIcon 0x7f0100da
+int attr color 0x7f010027
+int attr colorAccent 0x7f0100b9
+int attr colorButtonNormal 0x7f0100bd
+int attr colorControlActivated 0x7f0100bb
+int attr colorControlHighlight 0x7f0100bc
+int attr colorControlNormal 0x7f0100ba
+int attr colorPrimary 0x7f0100b7
+int attr colorPrimaryDark 0x7f0100b8
+int attr colorSwitchThumbNormal 0x7f0100be
+int attr commitIcon 0x7f01005b
+int attr contentInsetEnd 0x7f010017
+int attr contentInsetLeft 0x7f010018
+int attr contentInsetRight 0x7f010019
+int attr contentInsetStart 0x7f010016
+int attr controlBackground 0x7f0100bf
+int attr customNavigationLayout 0x7f01000f
+int attr defaultQueryHint 0x7f010055
+int attr dialogPreferredPadding 0x7f010091
+int attr dialogTheme 0x7f010090
+int attr displayOptions 0x7f010005
+int attr divider 0x7f01000b
+int attr dividerHorizontal 0x7f01009e
+int attr dividerPadding 0x7f01004a
+int attr dividerVertical 0x7f01009d
+int attr drawableSize 0x7f010029
+int attr drawerArrowStyle 0x7f010000
+int attr dropDownListViewStyle 0x7f0100af
+int attr dropdownListPreferredItemHeight 0x7f010094
+int attr editTextBackground 0x7f0100a5
+int attr editTextColor 0x7f0100a4
+int attr editTextStyle 0x7f0100cd
+int attr elevation 0x7f01001a
+int attr expandActivityOverflowButtonDrawable 0x7f01001e
+int attr fadeDuration 0x7f01002f
+int attr failureImage 0x7f010035
+int attr failureImageScaleType 0x7f010036
+int attr gapBetweenBars 0x7f01002a
+int attr goIcon 0x7f010057
+int attr height 0x7f010001
+int attr hideOnContentScroll 0x7f010015
+int attr homeAsUpIndicator 0x7f010096
+int attr homeLayout 0x7f010010
+int attr icon 0x7f010009
+int attr iconifiedByDefault 0x7f010053
+int attr indeterminateProgressStyle 0x7f010012
+int attr initialActivityCount 0x7f01001d
+int attr isLightTheme 0x7f010002
+int attr itemPadding 0x7f010014
+int attr layout 0x7f010052
+int attr listChoiceBackgroundIndicator 0x7f0100b6
+int attr listDividerAlertDialog 0x7f010092
+int attr listItemLayout 0x7f010023
+int attr listLayout 0x7f010020
+int attr listPopupWindowStyle 0x7f0100b0
+int attr listPreferredItemHeight 0x7f0100aa
+int attr listPreferredItemHeightLarge 0x7f0100ac
+int attr listPreferredItemHeightSmall 0x7f0100ab
+int attr listPreferredItemPaddingLeft 0x7f0100ad
+int attr listPreferredItemPaddingRight 0x7f0100ae
+int attr logo 0x7f01000a
+int attr logoDescription 0x7f0100de
+int attr maxButtonHeight 0x7f0100d9
+int attr measureWithLargestChild 0x7f010048
+int attr multiChoiceItemLayout 0x7f010021
+int attr navigationContentDescription 0x7f0100dd
+int attr navigationIcon 0x7f0100dc
+int attr navigationMode 0x7f010004
+int attr overlapAnchor 0x7f010050
+int attr overlayImage 0x7f01003c
+int attr paddingEnd 0x7f0100e2
+int attr paddingStart 0x7f0100e1
+int attr panelBackground 0x7f0100b3
+int attr panelMenuListTheme 0x7f0100b5
+int attr panelMenuListWidth 0x7f0100b4
+int attr placeholderImage 0x7f010031
+int attr placeholderImageScaleType 0x7f010032
+int attr popupMenuStyle 0x7f0100a2
+int attr popupTheme 0x7f01001b
+int attr popupWindowStyle 0x7f0100a3
+int attr preserveIconSpacing 0x7f01004f
+int attr pressedStateOverlayImage 0x7f01003d
+int attr progressBarAutoRotateInterval 0x7f010039
+int attr progressBarImage 0x7f010037
+int attr progressBarImageScaleType 0x7f010038
+int attr progressBarPadding 0x7f010013
+int attr progressBarStyle 0x7f010011
+int attr queryBackground 0x7f01005d
+int attr queryHint 0x7f010054
+int attr radioButtonStyle 0x7f0100ce
+int attr ratingBarStyle 0x7f0100cf
+int attr retryImage 0x7f010033
+int attr retryImageScaleType 0x7f010034
+int attr roundAsCircle 0x7f01003e
+int attr roundBottomLeft 0x7f010043
+int attr roundBottomRight 0x7f010042
+int attr roundTopLeft 0x7f010040
+int attr roundTopRight 0x7f010041
+int attr roundWithOverlayColor 0x7f010044
+int attr roundedCornerRadius 0x7f01003f
+int attr roundingBorderColor 0x7f010046
+int attr roundingBorderPadding 0x7f010047
+int attr roundingBorderWidth 0x7f010045
+int attr searchHintIcon 0x7f010059
+int attr searchIcon 0x7f010058
+int attr searchViewStyle 0x7f0100a9
+int attr selectableItemBackground 0x7f01009a
+int attr selectableItemBackgroundBorderless 0x7f01009b
+int attr showAsAction 0x7f01004b
+int attr showDividers 0x7f010049
+int attr showText 0x7f010067
+int attr singleChoiceItemLayout 0x7f010022
+int attr spinBars 0x7f010028
+int attr spinnerDropDownItemStyle 0x7f010095
+int attr spinnerStyle 0x7f0100d0
+int attr splitTrack 0x7f010066
+int attr state_above_anchor 0x7f010051
+int attr submitBackground 0x7f01005e
+int attr subtitle 0x7f010006
+int attr subtitleTextAppearance 0x7f0100d3
+int attr subtitleTextColor 0x7f0100e0
+int attr subtitleTextStyle 0x7f010008
+int attr suggestionRowLayout 0x7f01005c
+int attr switchMinWidth 0x7f010064
+int attr switchPadding 0x7f010065
+int attr switchStyle 0x7f0100d1
+int attr switchTextAppearance 0x7f010063
+int attr textAllCaps 0x7f010024
+int attr textAppearanceLargePopupMenu 0x7f01008e
+int attr textAppearanceListItem 0x7f0100b1
+int attr textAppearanceListItemSmall 0x7f0100b2
+int attr textAppearanceSearchResultSubtitle 0x7f0100a7
+int attr textAppearanceSearchResultTitle 0x7f0100a6
+int attr textAppearanceSmallPopupMenu 0x7f01008f
+int attr textColorAlertDialogListItem 0x7f0100c4
+int attr textColorSearchUrl 0x7f0100a8
+int attr theme 0x7f0100e3
+int attr thickness 0x7f01002e
+int attr thumbTextPadding 0x7f010062
+int attr title 0x7f010003
+int attr titleMarginBottom 0x7f0100d8
+int attr titleMarginEnd 0x7f0100d6
+int attr titleMarginStart 0x7f0100d5
+int attr titleMarginTop 0x7f0100d7
+int attr titleMargins 0x7f0100d4
+int attr titleTextAppearance 0x7f0100d2
+int attr titleTextColor 0x7f0100df
+int attr titleTextStyle 0x7f010007
+int attr toolbarNavigationButtonStyle 0x7f0100a1
+int attr toolbarStyle 0x7f0100a0
+int attr track 0x7f010061
+int attr viewAspectRatio 0x7f010030
+int attr voiceIcon 0x7f01005a
+int attr windowActionBar 0x7f010068
+int attr windowActionBarOverlay 0x7f01006a
+int attr windowActionModeOverlay 0x7f01006b
+int attr windowFixedHeightMajor 0x7f01006f
+int attr windowFixedHeightMinor 0x7f01006d
+int attr windowFixedWidthMajor 0x7f01006c
+int attr windowFixedWidthMinor 0x7f01006e
+int attr windowMinWidthMajor 0x7f010070
+int attr windowMinWidthMinor 0x7f010071
+int attr windowNoTitle 0x7f010069
+int bool abc_action_bar_embed_tabs 0x7f090002
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f090000
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f090003
+int bool abc_config_actionMenuItemAllCaps 0x7f090004
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f090001
+int bool abc_config_closeDialogWhenTouchOutside 0x7f090005
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f090006
+int color abc_background_cache_hint_selector_material_dark 0x7f0b003b
+int color abc_background_cache_hint_selector_material_light 0x7f0b003c
+int color abc_color_highlight_material 0x7f0b003d
+int color abc_input_method_navigation_guard 0x7f0b0000
+int color abc_primary_text_disable_only_material_dark 0x7f0b003e
+int color abc_primary_text_disable_only_material_light 0x7f0b003f
+int color abc_primary_text_material_dark 0x7f0b0040
+int color abc_primary_text_material_light 0x7f0b0041
+int color abc_search_url_text 0x7f0b0042
+int color abc_search_url_text_normal 0x7f0b0001
+int color abc_search_url_text_pressed 0x7f0b0002
+int color abc_search_url_text_selected 0x7f0b0003
+int color abc_secondary_text_material_dark 0x7f0b0043
+int color abc_secondary_text_material_light 0x7f0b0044
+int color accent_material_dark 0x7f0b0004
+int color accent_material_light 0x7f0b0005
+int color background_floating_material_dark 0x7f0b0006
+int color background_floating_material_light 0x7f0b0007
+int color background_material_dark 0x7f0b0008
+int color background_material_light 0x7f0b0009
+int color bright_foreground_disabled_material_dark 0x7f0b000a
+int color bright_foreground_disabled_material_light 0x7f0b000b
+int color bright_foreground_inverse_material_dark 0x7f0b000c
+int color bright_foreground_inverse_material_light 0x7f0b000d
+int color bright_foreground_material_dark 0x7f0b000e
+int color bright_foreground_material_light 0x7f0b000f
+int color button_material_dark 0x7f0b0010
+int color button_material_light 0x7f0b0011
+int color catalyst_redbox_background 0x7f0b0012
+int color dim_foreground_disabled_material_dark 0x7f0b0013
+int color dim_foreground_disabled_material_light 0x7f0b0014
+int color dim_foreground_material_dark 0x7f0b0015
+int color dim_foreground_material_light 0x7f0b0016
+int color foreground_material_dark 0x7f0b0017
+int color foreground_material_light 0x7f0b0018
+int color highlighted_text_material_dark 0x7f0b0019
+int color highlighted_text_material_light 0x7f0b001a
+int color hint_foreground_material_dark 0x7f0b001b
+int color hint_foreground_material_light 0x7f0b001c
+int color material_blue_grey_800 0x7f0b001d
+int color material_blue_grey_900 0x7f0b001e
+int color material_blue_grey_950 0x7f0b001f
+int color material_deep_teal_200 0x7f0b0020
+int color material_deep_teal_500 0x7f0b0021
+int color material_grey_100 0x7f0b0022
+int color material_grey_300 0x7f0b0023
+int color material_grey_50 0x7f0b0024
+int color material_grey_600 0x7f0b0025
+int color material_grey_800 0x7f0b0026
+int color material_grey_850 0x7f0b0027
+int color material_grey_900 0x7f0b0028
+int color primary_dark_material_dark 0x7f0b0029
+int color primary_dark_material_light 0x7f0b002a
+int color primary_material_dark 0x7f0b002b
+int color primary_material_light 0x7f0b002c
+int color primary_text_default_material_dark 0x7f0b002d
+int color primary_text_default_material_light 0x7f0b002e
+int color primary_text_disabled_material_dark 0x7f0b002f
+int color primary_text_disabled_material_light 0x7f0b0030
+int color ripple_material_dark 0x7f0b0031
+int color ripple_material_light 0x7f0b0032
+int color secondary_text_default_material_dark 0x7f0b0033
+int color secondary_text_default_material_light 0x7f0b0034
+int color secondary_text_disabled_material_dark 0x7f0b0035
+int color secondary_text_disabled_material_light 0x7f0b0036
+int color switch_thumb_disabled_material_dark 0x7f0b0037
+int color switch_thumb_disabled_material_light 0x7f0b0038
+int color switch_thumb_material_dark 0x7f0b0045
+int color switch_thumb_material_light 0x7f0b0046
+int color switch_thumb_normal_material_dark 0x7f0b0039
+int color switch_thumb_normal_material_light 0x7f0b003a
+int dimen abc_action_bar_content_inset_material 0x7f07000b
+int dimen abc_action_bar_default_height_material 0x7f070001
+int dimen abc_action_bar_default_padding_end_material 0x7f07000c
+int dimen abc_action_bar_default_padding_start_material 0x7f07000d
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f07000f
+int dimen abc_action_bar_overflow_padding_end_material 0x7f070010
+int dimen abc_action_bar_overflow_padding_start_material 0x7f070011
+int dimen abc_action_bar_progress_bar_size 0x7f070002
+int dimen abc_action_bar_stacked_max_height 0x7f070012
+int dimen abc_action_bar_stacked_tab_max_width 0x7f070013
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f070014
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f070015
+int dimen abc_action_button_min_height_material 0x7f070016
+int dimen abc_action_button_min_width_material 0x7f070017
+int dimen abc_action_button_min_width_overflow_material 0x7f070018
+int dimen abc_alert_dialog_button_bar_height 0x7f070000
+int dimen abc_button_inset_horizontal_material 0x7f070019
+int dimen abc_button_inset_vertical_material 0x7f07001a
+int dimen abc_button_padding_horizontal_material 0x7f07001b
+int dimen abc_button_padding_vertical_material 0x7f07001c
+int dimen abc_config_prefDialogWidth 0x7f070005
+int dimen abc_control_corner_material 0x7f07001d
+int dimen abc_control_inset_material 0x7f07001e
+int dimen abc_control_padding_material 0x7f07001f
+int dimen abc_dialog_list_padding_vertical_material 0x7f070020
+int dimen abc_dialog_min_width_major 0x7f070021
+int dimen abc_dialog_min_width_minor 0x7f070022
+int dimen abc_dialog_padding_material 0x7f070023
+int dimen abc_dialog_padding_top_material 0x7f070024
+int dimen abc_disabled_alpha_material_dark 0x7f070025
+int dimen abc_disabled_alpha_material_light 0x7f070026
+int dimen abc_dropdownitem_icon_width 0x7f070027
+int dimen abc_dropdownitem_text_padding_left 0x7f070028
+int dimen abc_dropdownitem_text_padding_right 0x7f070029
+int dimen abc_edit_text_inset_bottom_material 0x7f07002a
+int dimen abc_edit_text_inset_horizontal_material 0x7f07002b
+int dimen abc_edit_text_inset_top_material 0x7f07002c
+int dimen abc_floating_window_z 0x7f07002d
+int dimen abc_list_item_padding_horizontal_material 0x7f07002e
+int dimen abc_panel_menu_list_width 0x7f07002f
+int dimen abc_search_view_preferred_width 0x7f070030
+int dimen abc_search_view_text_min_width 0x7f070006
+int dimen abc_switch_padding 0x7f07000e
+int dimen abc_text_size_body_1_material 0x7f070031
+int dimen abc_text_size_body_2_material 0x7f070032
+int dimen abc_text_size_button_material 0x7f070033
+int dimen abc_text_size_caption_material 0x7f070034
+int dimen abc_text_size_display_1_material 0x7f070035
+int dimen abc_text_size_display_2_material 0x7f070036
+int dimen abc_text_size_display_3_material 0x7f070037
+int dimen abc_text_size_display_4_material 0x7f070038
+int dimen abc_text_size_headline_material 0x7f070039
+int dimen abc_text_size_large_material 0x7f07003a
+int dimen abc_text_size_medium_material 0x7f07003b
+int dimen abc_text_size_menu_material 0x7f07003c
+int dimen abc_text_size_small_material 0x7f07003d
+int dimen abc_text_size_subhead_material 0x7f07003e
+int dimen abc_text_size_subtitle_material_toolbar 0x7f070003
+int dimen abc_text_size_title_material 0x7f07003f
+int dimen abc_text_size_title_material_toolbar 0x7f070004
+int dimen dialog_fixed_height_major 0x7f070007
+int dimen dialog_fixed_height_minor 0x7f070008
+int dimen dialog_fixed_width_major 0x7f070009
+int dimen dialog_fixed_width_minor 0x7f07000a
+int dimen disabled_alpha_material_dark 0x7f070040
+int dimen disabled_alpha_material_light 0x7f070041
+int dimen highlight_alpha_material_colored 0x7f070042
+int dimen highlight_alpha_material_dark 0x7f070043
+int dimen highlight_alpha_material_light 0x7f070044
+int dimen notification_large_icon_height 0x7f070045
+int dimen notification_large_icon_width 0x7f070046
+int dimen notification_subtext_size 0x7f070047
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
+int drawable abc_action_bar_item_background_material 0x7f020001
+int drawable abc_btn_borderless_material 0x7f020002
+int drawable abc_btn_check_material 0x7f020003
+int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
+int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
+int drawable abc_btn_colored_material 0x7f020006
+int drawable abc_btn_default_mtrl_shape 0x7f020007
+int drawable abc_btn_radio_material 0x7f020008
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
+int drawable abc_cab_background_internal_bg 0x7f02000f
+int drawable abc_cab_background_top_material 0x7f020010
+int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
+int drawable abc_control_background_material 0x7f020012
+int drawable abc_dialog_material_background_dark 0x7f020013
+int drawable abc_dialog_material_background_light 0x7f020014
+int drawable abc_edit_text_material 0x7f020015
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
+int drawable abc_ic_clear_mtrl_alpha 0x7f020017
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
+int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020021
+int drawable abc_item_background_holo_dark 0x7f020022
+int drawable abc_item_background_holo_light 0x7f020023
+int drawable abc_list_divider_mtrl_alpha 0x7f020024
+int drawable abc_list_focused_holo 0x7f020025
+int drawable abc_list_longpressed_holo 0x7f020026
+int drawable abc_list_pressed_holo_dark 0x7f020027
+int drawable abc_list_pressed_holo_light 0x7f020028
+int drawable abc_list_selector_background_transition_holo_dark 0x7f020029
+int drawable abc_list_selector_background_transition_holo_light 0x7f02002a
+int drawable abc_list_selector_disabled_holo_dark 0x7f02002b
+int drawable abc_list_selector_disabled_holo_light 0x7f02002c
+int drawable abc_list_selector_holo_dark 0x7f02002d
+int drawable abc_list_selector_holo_light 0x7f02002e
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002f
+int drawable abc_popup_background_mtrl_mult 0x7f020030
+int drawable abc_ratingbar_full_material 0x7f020031
+int drawable abc_spinner_mtrl_am_alpha 0x7f020032
+int drawable abc_spinner_textfield_background_material 0x7f020033
+int drawable abc_switch_thumb_material 0x7f020034
+int drawable abc_switch_track_mtrl_alpha 0x7f020035
+int drawable abc_tab_indicator_material 0x7f020036
+int drawable abc_tab_indicator_mtrl_alpha 0x7f020037
+int drawable abc_text_cursor_material 0x7f020038
+int drawable abc_textfield_activated_mtrl_alpha 0x7f020039
+int drawable abc_textfield_default_mtrl_alpha 0x7f02003a
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f02003b
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f02003c
+int drawable abc_textfield_search_material 0x7f02003d
+int drawable notification_template_icon_bg 0x7f02003e
+int id action0 0x7f0c0058
+int id action_bar 0x7f0c0048
+int id action_bar_activity_content 0x7f0c0000
+int id action_bar_container 0x7f0c0047
+int id action_bar_root 0x7f0c0043
+int id action_bar_spinner 0x7f0c0001
+int id action_bar_subtitle 0x7f0c002c
+int id action_bar_title 0x7f0c002b
+int id action_context_bar 0x7f0c0049
+int id action_divider 0x7f0c005c
+int id action_menu_divider 0x7f0c0002
+int id action_menu_presenter 0x7f0c0003
+int id action_mode_bar 0x7f0c0045
+int id action_mode_bar_stub 0x7f0c0044
+int id action_mode_close_button 0x7f0c002d
+int id activity_chooser_view_content 0x7f0c002e
+int id alertTitle 0x7f0c0038
+int id always 0x7f0c0025
+int id beginning 0x7f0c0022
+int id buttonPanel 0x7f0c003e
+int id cancel_action 0x7f0c0059
+int id catalyst_redbox_title 0x7f0c0067
+int id center 0x7f0c001a
+int id centerCrop 0x7f0c001b
+int id centerInside 0x7f0c001c
+int id checkbox 0x7f0c0040
+int id chronometer 0x7f0c005f
+int id collapseActionView 0x7f0c0026
+int id contentPanel 0x7f0c0039
+int id custom 0x7f0c003d
+int id customPanel 0x7f0c003c
+int id decor_content_parent 0x7f0c0046
+int id default_activity_button 0x7f0c0031
+int id disableHome 0x7f0c000e
+int id edit_query 0x7f0c004a
+int id end 0x7f0c0023
+int id end_padder 0x7f0c0064
+int id expand_activities_button 0x7f0c002f
+int id expanded_menu 0x7f0c003f
+int id fitCenter 0x7f0c001d
+int id fitEnd 0x7f0c001e
+int id fitStart 0x7f0c001f
+int id fitXY 0x7f0c0020
+int id focusCrop 0x7f0c0021
+int id fps_text 0x7f0c0057
+int id home 0x7f0c0004
+int id homeAsUp 0x7f0c000f
+int id icon 0x7f0c0033
+int id ifRoom 0x7f0c0027
+int id image 0x7f0c0030
+int id info 0x7f0c0063
+int id line1 0x7f0c005d
+int id line3 0x7f0c0061
+int id listMode 0x7f0c000b
+int id list_item 0x7f0c0032
+int id media_actions 0x7f0c005b
+int id middle 0x7f0c0024
+int id multiply 0x7f0c0015
+int id never 0x7f0c0028
+int id none 0x7f0c0010
+int id normal 0x7f0c000c
+int id parentPanel 0x7f0c0035
+int id progress_circular 0x7f0c0005
+int id progress_horizontal 0x7f0c0006
+int id radio 0x7f0c0042
+int id react_test_id 0x7f0c0007
+int id rn_frame_file 0x7f0c0066
+int id rn_frame_method 0x7f0c0065
+int id rn_redbox_copy_button 0x7f0c006e
+int id rn_redbox_dismiss_button 0x7f0c006c
+int id rn_redbox_line_separator 0x7f0c0069
+int id rn_redbox_loading_indicator 0x7f0c006a
+int id rn_redbox_reload_button 0x7f0c006d
+int id rn_redbox_report_button 0x7f0c006f
+int id rn_redbox_report_label 0x7f0c006b
+int id rn_redbox_stack 0x7f0c0068
+int id screen 0x7f0c0016
+int id scrollView 0x7f0c003a
+int id search_badge 0x7f0c004c
+int id search_bar 0x7f0c004b
+int id search_button 0x7f0c004d
+int id search_close_btn 0x7f0c0052
+int id search_edit_frame 0x7f0c004e
+int id search_go_btn 0x7f0c0054
+int id search_mag_icon 0x7f0c004f
+int id search_plate 0x7f0c0050
+int id search_src_text 0x7f0c0051
+int id search_voice_btn 0x7f0c0055
+int id select_dialog_listview 0x7f0c0056
+int id shortcut 0x7f0c0041
+int id showCustom 0x7f0c0011
+int id showHome 0x7f0c0012
+int id showTitle 0x7f0c0013
+int id split_action_bar 0x7f0c0008
+int id src_atop 0x7f0c0017
+int id src_in 0x7f0c0018
+int id src_over 0x7f0c0019
+int id status_bar_latest_event_content 0x7f0c005a
+int id submit_area 0x7f0c0053
+int id tabMode 0x7f0c000d
+int id text 0x7f0c0062
+int id text2 0x7f0c0060
+int id textSpacerNoButtons 0x7f0c003b
+int id time 0x7f0c005e
+int id title 0x7f0c0034
+int id title_template 0x7f0c0037
+int id topPanel 0x7f0c0036
+int id up 0x7f0c0009
+int id useLogo 0x7f0c0014
+int id view_tag_native_id 0x7f0c000a
+int id withText 0x7f0c0029
+int id wrap_content 0x7f0c002a
+int integer abc_config_activityDefaultDur 0x7f0a0001
+int integer abc_config_activityShortDur 0x7f0a0002
+int integer abc_max_action_buttons 0x7f0a0000
+int integer cancel_button_image_alpha 0x7f0a0003
+int integer status_bar_notification_info_maxnum 0x7f0a0004
+int layout abc_action_bar_title_item 0x7f030000
+int layout abc_action_bar_up_container 0x7f030001
+int layout abc_action_bar_view_list_nav_layout 0x7f030002
+int layout abc_action_menu_item_layout 0x7f030003
+int layout abc_action_menu_layout 0x7f030004
+int layout abc_action_mode_bar 0x7f030005
+int layout abc_action_mode_close_item_material 0x7f030006
+int layout abc_activity_chooser_view 0x7f030007
+int layout abc_activity_chooser_view_list_item 0x7f030008
+int layout abc_alert_dialog_material 0x7f030009
+int layout abc_dialog_title_material 0x7f03000a
+int layout abc_expanded_menu_layout 0x7f03000b
+int layout abc_list_menu_item_checkbox 0x7f03000c
+int layout abc_list_menu_item_icon 0x7f03000d
+int layout abc_list_menu_item_layout 0x7f03000e
+int layout abc_list_menu_item_radio 0x7f03000f
+int layout abc_popup_menu_item_layout 0x7f030010
+int layout abc_screen_content_include 0x7f030011
+int layout abc_screen_simple 0x7f030012
+int layout abc_screen_simple_overlay_action_mode 0x7f030013
+int layout abc_screen_toolbar 0x7f030014
+int layout abc_search_dropdown_item_icons_2line 0x7f030015
+int layout abc_search_view 0x7f030016
+int layout abc_select_dialog_material 0x7f030017
+int layout dev_loading_view 0x7f030018
+int layout fps_view 0x7f030019
+int layout notification_media_action 0x7f03001a
+int layout notification_media_cancel_action 0x7f03001b
+int layout notification_template_big_media 0x7f03001c
+int layout notification_template_big_media_narrow 0x7f03001d
+int layout notification_template_lines 0x7f03001e
+int layout notification_template_media 0x7f03001f
+int layout notification_template_part_chronometer 0x7f030020
+int layout notification_template_part_time 0x7f030021
+int layout redbox_item_frame 0x7f030022
+int layout redbox_item_title 0x7f030023
+int layout redbox_view 0x7f030024
+int layout select_dialog_item_material 0x7f030025
+int layout select_dialog_multichoice_material 0x7f030026
+int layout select_dialog_singlechoice_material 0x7f030027
+int layout support_simple_spinner_dropdown_item 0x7f030028
+int string abc_action_bar_home_description 0x7f060000
+int string abc_action_bar_home_description_format 0x7f060001
+int string abc_action_bar_home_subtitle_description_format 0x7f060002
+int string abc_action_bar_up_description 0x7f060003
+int string abc_action_menu_overflow_description 0x7f060004
+int string abc_action_mode_done 0x7f060005
+int string abc_activity_chooser_view_see_all 0x7f060006
+int string abc_activitychooserview_choose_application 0x7f060007
+int string abc_search_hint 0x7f060008
+int string abc_searchview_description_clear 0x7f060009
+int string abc_searchview_description_query 0x7f06000a
+int string abc_searchview_description_search 0x7f06000b
+int string abc_searchview_description_submit 0x7f06000c
+int string abc_searchview_description_voice 0x7f06000d
+int string abc_shareactionprovider_share_with 0x7f06000e
+int string abc_shareactionprovider_share_with_application 0x7f06000f
+int string abc_toolbar_collapse_description 0x7f060010
+int string catalyst_copy_button 0x7f060012
+int string catalyst_debugjs 0x7f060013
+int string catalyst_debugjs_nuclide 0x7f060014
+int string catalyst_debugjs_nuclide_failure 0x7f060015
+int string catalyst_debugjs_off 0x7f060016
+int string catalyst_dismiss_button 0x7f060017
+int string catalyst_element_inspector 0x7f060018
+int string catalyst_heap_capture 0x7f060019
+int string catalyst_hot_module_replacement 0x7f06001a
+int string catalyst_hot_module_replacement_off 0x7f06001b
+int string catalyst_jsload_error 0x7f06001c
+int string catalyst_live_reload 0x7f06001d
+int string catalyst_live_reload_off 0x7f06001e
+int string catalyst_loading_from_url 0x7f06001f
+int string catalyst_perf_monitor 0x7f060020
+int string catalyst_perf_monitor_off 0x7f060021
+int string catalyst_poke_sampling_profiler 0x7f060022
+int string catalyst_reload_button 0x7f060023
+int string catalyst_reloadjs 0x7f060024
+int string catalyst_remotedbg_error 0x7f060025
+int string catalyst_remotedbg_message 0x7f060026
+int string catalyst_report_button 0x7f060027
+int string catalyst_settings 0x7f060028
+int string catalyst_settings_title 0x7f060029
+int string status_bar_notification_info_overflow 0x7f060011
+int style AlertDialog_AppCompat 0x7f08007a
+int style AlertDialog_AppCompat_Light 0x7f08007b
+int style Animation_AppCompat_Dialog 0x7f08007c
+int style Animation_AppCompat_DropDownUp 0x7f08007d
+int style Animation_Catalyst_RedBox 0x7f08007e
+int style Base_AlertDialog_AppCompat 0x7f08007f
+int style Base_AlertDialog_AppCompat_Light 0x7f080080
+int style Base_Animation_AppCompat_Dialog 0x7f080081
+int style Base_Animation_AppCompat_DropDownUp 0x7f080082
+int style Base_DialogWindowTitle_AppCompat 0x7f080083
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f080084
+int style Base_TextAppearance_AppCompat 0x7f08002d
+int style Base_TextAppearance_AppCompat_Body1 0x7f08002e
+int style Base_TextAppearance_AppCompat_Body2 0x7f08002f
+int style Base_TextAppearance_AppCompat_Button 0x7f080018
+int style Base_TextAppearance_AppCompat_Caption 0x7f080030
+int style Base_TextAppearance_AppCompat_Display1 0x7f080031
+int style Base_TextAppearance_AppCompat_Display2 0x7f080032
+int style Base_TextAppearance_AppCompat_Display3 0x7f080033
+int style Base_TextAppearance_AppCompat_Display4 0x7f080034
+int style Base_TextAppearance_AppCompat_Headline 0x7f080035
+int style Base_TextAppearance_AppCompat_Inverse 0x7f080003
+int style Base_TextAppearance_AppCompat_Large 0x7f080036
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f080004
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080037
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f080038
+int style Base_TextAppearance_AppCompat_Medium 0x7f080039
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f080005
+int style Base_TextAppearance_AppCompat_Menu 0x7f08003a
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f080085
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f08003b
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f08003c
+int style Base_TextAppearance_AppCompat_Small 0x7f08003d
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f080006
+int style Base_TextAppearance_AppCompat_Subhead 0x7f08003e
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f080007
+int style Base_TextAppearance_AppCompat_Title 0x7f08003f
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080008
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f080040
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f080041
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f080042
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f080043
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f080044
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f080045
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f080046
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f080047
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f080076
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080086
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f080048
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f080049
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f08004a
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f08004b
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080087
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f08004c
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f08004d
+int style Base_Theme_AppCompat 0x7f08004e
+int style Base_Theme_AppCompat_CompactMenu 0x7f080088
+int style Base_Theme_AppCompat_Dialog 0x7f080009
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f080089
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f08008a
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f08008b
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080001
+int style Base_Theme_AppCompat_Light 0x7f08004f
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f08008c
+int style Base_Theme_AppCompat_Light_Dialog 0x7f08000a
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f08008d
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f08008e
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f08008f
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080002
+int style Base_ThemeOverlay_AppCompat 0x7f080090
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f080091
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f080092
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f080093
+int style Base_ThemeOverlay_AppCompat_Light 0x7f080094
+int style Base_V11_Theme_AppCompat_Dialog 0x7f08000b
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f08000c
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f080014
+int style Base_V12_Widget_AppCompat_EditText 0x7f080015
+int style Base_V21_Theme_AppCompat 0x7f080050
+int style Base_V21_Theme_AppCompat_Dialog 0x7f080051
+int style Base_V21_Theme_AppCompat_Light 0x7f080052
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f080053
+int style Base_V22_Theme_AppCompat 0x7f080074
+int style Base_V22_Theme_AppCompat_Light 0x7f080075
+int style Base_V23_Theme_AppCompat 0x7f080077
+int style Base_V23_Theme_AppCompat_Light 0x7f080078
+int style Base_V7_Theme_AppCompat 0x7f080095
+int style Base_V7_Theme_AppCompat_Dialog 0x7f080096
+int style Base_V7_Theme_AppCompat_Light 0x7f080097
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f080098
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f080099
+int style Base_V7_Widget_AppCompat_EditText 0x7f08009a
+int style Base_Widget_AppCompat_ActionBar 0x7f08009b
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f08009c
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f08009d
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f080054
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f080055
+int style Base_Widget_AppCompat_ActionButton 0x7f080056
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f080057
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f080058
+int style Base_Widget_AppCompat_ActionMode 0x7f08009e
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f08009f
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f080016
+int style Base_Widget_AppCompat_Button 0x7f080059
+int style Base_Widget_AppCompat_Button_Borderless 0x7f08005a
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f08005b
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800a0
+int style Base_Widget_AppCompat_Button_Colored 0x7f080079
+int style Base_Widget_AppCompat_Button_Small 0x7f08005c
+int style Base_Widget_AppCompat_ButtonBar 0x7f08005d
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800a1
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f08005e
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f08005f
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0800a2
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0800a3
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080060
+int style Base_Widget_AppCompat_EditText 0x7f080017
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f0800a4
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0800a5
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800a6
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f080061
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080062
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f080063
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f080064
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080065
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f080066
+int style Base_Widget_AppCompat_ListView 0x7f080067
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f080068
+int style Base_Widget_AppCompat_ListView_Menu 0x7f080069
+int style Base_Widget_AppCompat_PopupMenu 0x7f08006a
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f08006b
+int style Base_Widget_AppCompat_PopupWindow 0x7f0800a7
+int style Base_Widget_AppCompat_ProgressBar 0x7f08000d
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f08000e
+int style Base_Widget_AppCompat_RatingBar 0x7f08006c
+int style Base_Widget_AppCompat_SearchView 0x7f0800a8
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800a9
+int style Base_Widget_AppCompat_Spinner 0x7f08006d
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f08006e
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f08006f
+int style Base_Widget_AppCompat_Toolbar 0x7f0800aa
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f080070
+int style CalendarDatePickerDialog 0x7f0800ab
+int style CalendarDatePickerStyle 0x7f0800ac
+int style ClockTimePickerDialog 0x7f0800ad
+int style ClockTimePickerStyle 0x7f0800ae
+int style DialogAnimationFade 0x7f0800af
+int style DialogAnimationSlide 0x7f0800b0
+int style Platform_AppCompat 0x7f08000f
+int style Platform_AppCompat_Light 0x7f080010
+int style Platform_ThemeOverlay_AppCompat 0x7f080071
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f080072
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f080073
+int style Platform_V11_AppCompat 0x7f080011
+int style Platform_V11_AppCompat_Light 0x7f080012
+int style Platform_V14_AppCompat 0x7f080019
+int style Platform_V14_AppCompat_Light 0x7f08001a
+int style Platform_Widget_AppCompat_Spinner 0x7f080013
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080020
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f080021
+int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f080022
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f080023
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f080024
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f080025
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f080026
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f080027
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f080028
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080029
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f08002a
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f08002b
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f08002c
+int style SpinnerDatePickerDialog 0x7f0800b1
+int style SpinnerDatePickerStyle 0x7f0800b2
+int style SpinnerTimePickerDialog 0x7f0800b3
+int style SpinnerTimePickerStyle 0x7f0800b4
+int style TextAppearance_AppCompat 0x7f0800b5
+int style TextAppearance_AppCompat_Body1 0x7f0800b6
+int style TextAppearance_AppCompat_Body2 0x7f0800b7
+int style TextAppearance_AppCompat_Button 0x7f0800b8
+int style TextAppearance_AppCompat_Caption 0x7f0800b9
+int style TextAppearance_AppCompat_Display1 0x7f0800ba
+int style TextAppearance_AppCompat_Display2 0x7f0800bb
+int style TextAppearance_AppCompat_Display3 0x7f0800bc
+int style TextAppearance_AppCompat_Display4 0x7f0800bd
+int style TextAppearance_AppCompat_Headline 0x7f0800be
+int style TextAppearance_AppCompat_Inverse 0x7f0800bf
+int style TextAppearance_AppCompat_Large 0x7f0800c0
+int style TextAppearance_AppCompat_Large_Inverse 0x7f0800c1
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800c2
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800c3
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800c4
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800c5
+int style TextAppearance_AppCompat_Medium 0x7f0800c6
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800c7
+int style TextAppearance_AppCompat_Menu 0x7f0800c8
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800c9
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800ca
+int style TextAppearance_AppCompat_Small 0x7f0800cb
+int style TextAppearance_AppCompat_Small_Inverse 0x7f0800cc
+int style TextAppearance_AppCompat_Subhead 0x7f0800cd
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800ce
+int style TextAppearance_AppCompat_Title 0x7f0800cf
+int style TextAppearance_AppCompat_Title_Inverse 0x7f0800d0
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800d1
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800d2
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800d3
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800d4
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800d5
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800d6
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800d7
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800d8
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800d9
+int style TextAppearance_AppCompat_Widget_Button 0x7f0800da
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0800db
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800dc
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800dd
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800de
+int style TextAppearance_AppCompat_Widget_Switch 0x7f0800df
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800e0
+int style TextAppearance_StatusBar_EventContent 0x7f08001b
+int style TextAppearance_StatusBar_EventContent_Info 0x7f08001c
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f08001d
+int style TextAppearance_StatusBar_EventContent_Time 0x7f08001e
+int style TextAppearance_StatusBar_EventContent_Title 0x7f08001f
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800e1
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800e2
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800e3
+int style Theme 0x7f0800e4
+int style Theme_AppCompat 0x7f0800e5
+int style Theme_AppCompat_CompactMenu 0x7f0800e6
+int style Theme_AppCompat_Dialog 0x7f0800e7
+int style Theme_AppCompat_Dialog_Alert 0x7f0800e8
+int style Theme_AppCompat_Dialog_MinWidth 0x7f0800e9
+int style Theme_AppCompat_DialogWhenLarge 0x7f0800ea
+int style Theme_AppCompat_Light 0x7f0800eb
+int style Theme_AppCompat_Light_DarkActionBar 0x7f0800ec
+int style Theme_AppCompat_Light_Dialog 0x7f0800ed
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f0800ee
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800ef
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800f0
+int style Theme_AppCompat_Light_NoActionBar 0x7f0800f1
+int style Theme_AppCompat_NoActionBar 0x7f0800f2
+int style Theme_Catalyst 0x7f0800f3
+int style Theme_Catalyst_RedBox 0x7f0800f4
+int style Theme_FullScreenDialog 0x7f0800f5
+int style Theme_FullScreenDialogAnimatedFade 0x7f0800f6
+int style Theme_FullScreenDialogAnimatedSlide 0x7f0800f7
+int style Theme_ReactNative_AppCompat_Light 0x7f0800f8
+int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f0800f9
+int style ThemeOverlay_AppCompat 0x7f0800fa
+int style ThemeOverlay_AppCompat_ActionBar 0x7f0800fb
+int style ThemeOverlay_AppCompat_Dark 0x7f0800fc
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800fd
+int style ThemeOverlay_AppCompat_Light 0x7f0800fe
+int style Widget_AppCompat_ActionBar 0x7f0800ff
+int style Widget_AppCompat_ActionBar_Solid 0x7f080100
+int style Widget_AppCompat_ActionBar_TabBar 0x7f080101
+int style Widget_AppCompat_ActionBar_TabText 0x7f080102
+int style Widget_AppCompat_ActionBar_TabView 0x7f080103
+int style Widget_AppCompat_ActionButton 0x7f080104
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f080105
+int style Widget_AppCompat_ActionButton_Overflow 0x7f080106
+int style Widget_AppCompat_ActionMode 0x7f080107
+int style Widget_AppCompat_ActivityChooserView 0x7f080108
+int style Widget_AppCompat_AutoCompleteTextView 0x7f080109
+int style Widget_AppCompat_Button 0x7f08010a
+int style Widget_AppCompat_Button_Borderless 0x7f08010b
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f08010c
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f08010d
+int style Widget_AppCompat_Button_Colored 0x7f08010e
+int style Widget_AppCompat_Button_Small 0x7f08010f
+int style Widget_AppCompat_ButtonBar 0x7f080110
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f080111
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f080112
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f080113
+int style Widget_AppCompat_CompoundButton_Switch 0x7f080114
+int style Widget_AppCompat_DrawerArrowToggle 0x7f080115
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f080116
+int style Widget_AppCompat_EditText 0x7f080117
+int style Widget_AppCompat_Light_ActionBar 0x7f080118
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f080119
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f08011a
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f08011b
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f08011c
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f08011d
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f08011e
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f08011f
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f080120
+int style Widget_AppCompat_Light_ActionButton 0x7f080121
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f080122
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f080123
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f080124
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f080125
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f080126
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f080127
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f080128
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f080129
+int style Widget_AppCompat_Light_PopupMenu 0x7f08012a
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08012b
+int style Widget_AppCompat_Light_SearchView 0x7f08012c
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f08012d
+int style Widget_AppCompat_ListPopupWindow 0x7f08012e
+int style Widget_AppCompat_ListView 0x7f08012f
+int style Widget_AppCompat_ListView_DropDown 0x7f080130
+int style Widget_AppCompat_ListView_Menu 0x7f080131
+int style Widget_AppCompat_PopupMenu 0x7f080132
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f080133
+int style Widget_AppCompat_PopupWindow 0x7f080134
+int style Widget_AppCompat_ProgressBar 0x7f080135
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f080136
+int style Widget_AppCompat_RatingBar 0x7f080137
+int style Widget_AppCompat_SearchView 0x7f080138
+int style Widget_AppCompat_SearchView_ActionBar 0x7f080139
+int style Widget_AppCompat_Spinner 0x7f08013a
+int style Widget_AppCompat_Spinner_DropDown 0x7f08013b
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f08013c
+int style Widget_AppCompat_Spinner_Underlined 0x7f08013d
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f08013e
+int style Widget_AppCompat_Toolbar 0x7f08013f
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f080140
+int style redboxButton 0x7f080141
+int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010096 }
+int styleable ActionBar_background 10
+int styleable ActionBar_backgroundSplit 12
+int styleable ActionBar_backgroundStacked 11
+int styleable ActionBar_contentInsetEnd 21
+int styleable ActionBar_contentInsetLeft 22
+int styleable ActionBar_contentInsetRight 23
+int styleable ActionBar_contentInsetStart 20
+int styleable ActionBar_customNavigationLayout 13
+int styleable ActionBar_displayOptions 3
+int styleable ActionBar_divider 9
+int styleable ActionBar_elevation 24
+int styleable ActionBar_height 0
+int styleable ActionBar_hideOnContentScroll 19
+int styleable ActionBar_homeAsUpIndicator 26
+int styleable ActionBar_homeLayout 14
+int styleable ActionBar_icon 7
+int styleable ActionBar_indeterminateProgressStyle 16
+int styleable ActionBar_itemPadding 18
+int styleable ActionBar_logo 8
+int styleable ActionBar_navigationMode 2
+int styleable ActionBar_popupTheme 25
+int styleable ActionBar_progressBarPadding 17
+int styleable ActionBar_progressBarStyle 15
+int styleable ActionBar_subtitle 4
+int styleable ActionBar_subtitleTextStyle 6
+int styleable ActionBar_title 1
+int styleable ActionBar_titleTextStyle 5
+int[] styleable ActionBarLayout { 0x010100b3 }
+int styleable ActionBarLayout_android_layout_gravity 0
+int[] styleable ActionMenuItemView { 0x0101013f }
+int styleable ActionMenuItemView_android_minWidth 0
+int[] styleable ActionMenuView { }
+int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
+int styleable ActionMode_background 3
+int styleable ActionMode_backgroundSplit 4
+int styleable ActionMode_closeItemLayout 5
+int styleable ActionMode_height 0
+int styleable ActionMode_subtitleTextStyle 2
+int styleable ActionMode_titleTextStyle 1
+int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
+int styleable ActivityChooserView_initialActivityCount 0
+int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonPanelSideLayout 1
+int styleable AlertDialog_listItemLayout 5
+int styleable AlertDialog_listLayout 2
+int styleable AlertDialog_multiChoiceItemLayout 3
+int styleable AlertDialog_singleChoiceItemLayout 4
+int[] styleable AppCompatTextView { 0x01010034, 0x7f010024 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_textAllCaps 1
+int[] styleable CompoundButton { 0x01010107, 0x7f010025, 0x7f010026 }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable DrawerArrowToggle { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }
+int styleable DrawerArrowToggle_arrowHeadLength 4
+int styleable DrawerArrowToggle_arrowShaftLength 5
+int styleable DrawerArrowToggle_barLength 6
+int styleable DrawerArrowToggle_color 0
+int styleable DrawerArrowToggle_drawableSize 2
+int styleable DrawerArrowToggle_gapBetweenBars 3
+int styleable DrawerArrowToggle_spinBars 1
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable GenericDraweeHierarchy { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 }
+int styleable GenericDraweeHierarchy_actualImageScaleType 11
+int styleable GenericDraweeHierarchy_backgroundImage 12
+int styleable GenericDraweeHierarchy_fadeDuration 0
+int styleable GenericDraweeHierarchy_failureImage 6
+int styleable GenericDraweeHierarchy_failureImageScaleType 7
+int styleable GenericDraweeHierarchy_overlayImage 13
+int styleable GenericDraweeHierarchy_placeholderImage 2
+int styleable GenericDraweeHierarchy_placeholderImageScaleType 3
+int styleable GenericDraweeHierarchy_pressedStateOverlayImage 14
+int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 10
+int styleable GenericDraweeHierarchy_progressBarImage 8
+int styleable GenericDraweeHierarchy_progressBarImageScaleType 9
+int styleable GenericDraweeHierarchy_retryImage 4
+int styleable GenericDraweeHierarchy_retryImageScaleType 5
+int styleable GenericDraweeHierarchy_roundAsCircle 15
+int styleable GenericDraweeHierarchy_roundBottomLeft 20
+int styleable GenericDraweeHierarchy_roundBottomRight 19
+int styleable GenericDraweeHierarchy_roundTopLeft 17
+int styleable GenericDraweeHierarchy_roundTopRight 18
+int styleable GenericDraweeHierarchy_roundWithOverlayColor 21
+int styleable GenericDraweeHierarchy_roundedCornerRadius 16
+int styleable GenericDraweeHierarchy_roundingBorderColor 23
+int styleable GenericDraweeHierarchy_roundingBorderPadding 24
+int styleable GenericDraweeHierarchy_roundingBorderWidth 22
+int styleable GenericDraweeHierarchy_viewAspectRatio 1
+int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010048, 0x7f010049, 0x7f01004a }
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 8
+int styleable LinearLayoutCompat_measureWithLargestChild 6
+int styleable LinearLayoutCompat_showDividers 7
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
+int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
+int styleable MenuGroup_android_checkableBehavior 5
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 2
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e }
+int styleable MenuItem_actionLayout 14
+int styleable MenuItem_actionProviderClass 16
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_showAsAction 13
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004f }
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_preserveIconSpacing 7
+int[] styleable PopupWindow { 0x01010176, 0x7f010050 }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_overlapAnchor 1
+int[] styleable PopupWindowBackgroundState { 0x7f010051 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 3
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 1
+int styleable SearchView_closeIcon 8
+int styleable SearchView_commitIcon 13
+int styleable SearchView_defaultQueryHint 7
+int styleable SearchView_goIcon 9
+int styleable SearchView_iconifiedByDefault 5
+int styleable SearchView_layout 4
+int styleable SearchView_queryBackground 15
+int styleable SearchView_queryHint 6
+int styleable SearchView_searchHintIcon 11
+int styleable SearchView_searchIcon 10
+int styleable SearchView_submitBackground 16
+int styleable SearchView_suggestionRowLayout 14
+int styleable SearchView_voiceIcon 12
+int[] styleable SimpleDraweeView { 0x7f01005f, 0x7f010060 }
+int styleable SimpleDraweeView_actualImageResource 1
+int styleable SimpleDraweeView_actualImageUri 0
+int[] styleable Spinner { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
+int styleable Spinner_android_dropDownWidth 2
+int styleable Spinner_android_popupBackground 0
+int styleable Spinner_android_prompt 1
+int styleable Spinner_popupTheme 3
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067 }
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 9
+int styleable SwitchCompat_splitTrack 8
+int styleable SwitchCompat_switchMinWidth 6
+int styleable SwitchCompat_switchPadding 7
+int styleable SwitchCompat_switchTextAppearance 5
+int styleable SwitchCompat_thumbTextPadding 4
+int styleable SwitchCompat_track 3
+int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010024 }
+int styleable TextAppearance_android_shadowColor 4
+int styleable TextAppearance_android_shadowDx 5
+int styleable TextAppearance_android_shadowDy 6
+int styleable TextAppearance_android_shadowRadius 7
+int styleable TextAppearance_android_textColor 3
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_textStyle 2
+int styleable TextAppearance_android_typeface 1
+int styleable TextAppearance_textAllCaps 8
+int[] styleable TextStyle { 0x01010034, 0x01010095, 0x01010097, 0x01010098, 0x010100ab, 0x01010153, 0x0101015d, 0x01010161, 0x01010162, 0x01010163, 0x01010164 }
+int styleable TextStyle_android_ellipsize 4
+int styleable TextStyle_android_maxLines 5
+int styleable TextStyle_android_shadowColor 7
+int styleable TextStyle_android_shadowDx 8
+int styleable TextStyle_android_shadowDy 9
+int styleable TextStyle_android_shadowRadius 10
+int styleable TextStyle_android_singleLine 6
+int styleable TextStyle_android_textAppearance 0
+int styleable TextStyle_android_textColor 3
+int styleable TextStyle_android_textSize 1
+int styleable TextStyle_android_textStyle 2
+int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1 }
+int styleable Theme_actionBarDivider 23
+int styleable Theme_actionBarItemBackground 24
+int styleable Theme_actionBarPopupTheme 17
+int styleable Theme_actionBarSize 22
+int styleable Theme_actionBarSplitStyle 19
+int styleable Theme_actionBarStyle 18
+int styleable Theme_actionBarTabBarStyle 13
+int styleable Theme_actionBarTabStyle 12
+int styleable Theme_actionBarTabTextStyle 14
+int styleable Theme_actionBarTheme 20
+int styleable Theme_actionBarWidgetTheme 21
+int styleable Theme_actionButtonStyle 49
+int styleable Theme_actionDropDownStyle 45
+int styleable Theme_actionMenuTextAppearance 25
+int styleable Theme_actionMenuTextColor 26
+int styleable Theme_actionModeBackground 29
+int styleable Theme_actionModeCloseButtonStyle 28
+int styleable Theme_actionModeCloseDrawable 31
+int styleable Theme_actionModeCopyDrawable 33
+int styleable Theme_actionModeCutDrawable 32
+int styleable Theme_actionModeFindDrawable 37
+int styleable Theme_actionModePasteDrawable 34
+int styleable Theme_actionModePopupWindowStyle 39
+int styleable Theme_actionModeSelectAllDrawable 35
+int styleable Theme_actionModeShareDrawable 36
+int styleable Theme_actionModeSplitBackground 30
+int styleable Theme_actionModeStyle 27
+int styleable Theme_actionModeWebSearchDrawable 38
+int styleable Theme_actionOverflowButtonStyle 15
+int styleable Theme_actionOverflowMenuStyle 16
+int styleable Theme_activityChooserViewStyle 57
+int styleable Theme_alertDialogButtonGroupStyle 91
+int styleable Theme_alertDialogCenterButtons 92
+int styleable Theme_alertDialogStyle 90
+int styleable Theme_alertDialogTheme 93
+int styleable Theme_android_windowAnimationStyle 1
+int styleable Theme_android_windowIsFloating 0
+int styleable Theme_autoCompleteTextViewStyle 98
+int styleable Theme_borderlessButtonStyle 54
+int styleable Theme_buttonBarButtonStyle 51
+int styleable Theme_buttonBarNegativeButtonStyle 96
+int styleable Theme_buttonBarNeutralButtonStyle 97
+int styleable Theme_buttonBarPositiveButtonStyle 95
+int styleable Theme_buttonBarStyle 50
+int styleable Theme_buttonStyle 99
+int styleable Theme_buttonStyleSmall 100
+int styleable Theme_checkboxStyle 101
+int styleable Theme_checkedTextViewStyle 102
+int styleable Theme_colorAccent 83
+int styleable Theme_colorButtonNormal 87
+int styleable Theme_colorControlActivated 85
+int styleable Theme_colorControlHighlight 86
+int styleable Theme_colorControlNormal 84
+int styleable Theme_colorPrimary 81
+int styleable Theme_colorPrimaryDark 82
+int styleable Theme_colorSwitchThumbNormal 88
+int styleable Theme_controlBackground 89
+int styleable Theme_dialogPreferredPadding 43
+int styleable Theme_dialogTheme 42
+int styleable Theme_dividerHorizontal 56
+int styleable Theme_dividerVertical 55
+int styleable Theme_dropDownListViewStyle 73
+int styleable Theme_dropdownListPreferredItemHeight 46
+int styleable Theme_editTextBackground 63
+int styleable Theme_editTextColor 62
+int styleable Theme_editTextStyle 103
+int styleable Theme_homeAsUpIndicator 48
+int styleable Theme_listChoiceBackgroundIndicator 80
+int styleable Theme_listDividerAlertDialog 44
+int styleable Theme_listPopupWindowStyle 74
+int styleable Theme_listPreferredItemHeight 68
+int styleable Theme_listPreferredItemHeightLarge 70
+int styleable Theme_listPreferredItemHeightSmall 69
+int styleable Theme_listPreferredItemPaddingLeft 71
+int styleable Theme_listPreferredItemPaddingRight 72
+int styleable Theme_panelBackground 77
+int styleable Theme_panelMenuListTheme 79
+int styleable Theme_panelMenuListWidth 78
+int styleable Theme_popupMenuStyle 60
+int styleable Theme_popupWindowStyle 61
+int styleable Theme_radioButtonStyle 104
+int styleable Theme_ratingBarStyle 105
+int styleable Theme_searchViewStyle 67
+int styleable Theme_selectableItemBackground 52
+int styleable Theme_selectableItemBackgroundBorderless 53
+int styleable Theme_spinnerDropDownItemStyle 47
+int styleable Theme_spinnerStyle 106
+int styleable Theme_switchStyle 107
+int styleable Theme_textAppearanceLargePopupMenu 40
+int styleable Theme_textAppearanceListItem 75
+int styleable Theme_textAppearanceListItemSmall 76
+int styleable Theme_textAppearanceSearchResultSubtitle 65
+int styleable Theme_textAppearanceSearchResultTitle 64
+int styleable Theme_textAppearanceSmallPopupMenu 41
+int styleable Theme_textColorAlertDialogListItem 94
+int styleable Theme_textColorSearchUrl 66
+int styleable Theme_toolbarNavigationButtonStyle 59
+int styleable Theme_toolbarStyle 58
+int styleable Theme_windowActionBar 2
+int styleable Theme_windowActionBarOverlay 4
+int styleable Theme_windowActionModeOverlay 5
+int styleable Theme_windowFixedHeightMajor 9
+int styleable Theme_windowFixedHeightMinor 7
+int styleable Theme_windowFixedWidthMajor 6
+int styleable Theme_windowFixedWidthMinor 8
+int styleable Theme_windowMinWidthMajor 10
+int styleable Theme_windowMinWidthMinor 11
+int styleable Theme_windowNoTitle 3
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_collapseContentDescription 19
+int styleable Toolbar_collapseIcon 18
+int styleable Toolbar_contentInsetEnd 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 5
+int styleable Toolbar_logo 4
+int styleable Toolbar_logoDescription 22
+int styleable Toolbar_maxButtonHeight 17
+int styleable Toolbar_navigationContentDescription 21
+int styleable Toolbar_navigationIcon 20
+int styleable Toolbar_popupTheme 9
+int styleable Toolbar_subtitle 3
+int styleable Toolbar_subtitleTextAppearance 11
+int styleable Toolbar_subtitleTextColor 24
+int styleable Toolbar_title 2
+int styleable Toolbar_titleMarginBottom 16
+int styleable Toolbar_titleMarginEnd 14
+int styleable Toolbar_titleMarginStart 13
+int styleable Toolbar_titleMarginTop 15
+int styleable Toolbar_titleMargins 12
+int styleable Toolbar_titleTextAppearance 10
+int styleable Toolbar_titleTextColor 23
+int[] styleable View { 0x01010000, 0x010100da, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3 }
+int styleable View_android_focusable 1
+int styleable View_android_theme 0
+int styleable View_paddingEnd 3
+int styleable View_paddingStart 2
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100e4, 0x7f0100e5 }
+int styleable ViewBackgroundHelper_android_background 0
+int styleable ViewBackgroundHelper_backgroundTint 1
+int styleable ViewBackgroundHelper_backgroundTintMode 2
+int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
+int styleable ViewStubCompat_android_id 0
+int styleable ViewStubCompat_android_inflatedId 2
+int styleable ViewStubCompat_android_layout 1
+int xml preferences 0x7f050000
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/annotations.zip b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/annotations.zip
new file mode 100644
index 00000000..bc1a7681
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/annotations.zip differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jars/classes.jar b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jars/classes.jar
new file mode 100644
index 00000000..3ff03a50
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jars/classes.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jars/libs/infer-annotations-4.0.jar b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jars/libs/infer-annotations-4.0.jar
new file mode 100644
index 00000000..ad33bb6e
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jars/libs/infer-annotations-4.0.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libfb.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libfb.so
new file mode 100644
index 00000000..d056c0d1
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libfb.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libfolly_json.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libfolly_json.so
new file mode 100644
index 00000000..4455f5c8
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libfolly_json.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libglog.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libglog.so
new file mode 100644
index 00000000..b8b0d906
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libglog.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libglog_init.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libglog_init.so
new file mode 100644
index 00000000..eee139f8
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libglog_init.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libgnustl_shared.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libgnustl_shared.so
new file mode 100644
index 00000000..81f0ce19
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libgnustl_shared.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libprivatedata.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libprivatedata.so
new file mode 100644
index 00000000..8ae0f8b6
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libprivatedata.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libreactnativejni.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libreactnativejni.so
new file mode 100644
index 00000000..57a69961
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libreactnativejni.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libyoga.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libyoga.so
new file mode 100644
index 00000000..942b4cc8
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/armeabi-v7a/libyoga.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libfb.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libfb.so
new file mode 100644
index 00000000..bb4ff0a0
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libfb.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libfolly_json.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libfolly_json.so
new file mode 100644
index 00000000..f54ffcdc
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libfolly_json.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libglog.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libglog.so
new file mode 100644
index 00000000..558ee903
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libglog.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libglog_init.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libglog_init.so
new file mode 100644
index 00000000..5145af6a
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libglog_init.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libgnustl_shared.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libgnustl_shared.so
new file mode 100644
index 00000000..bb9d5238
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libgnustl_shared.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libprivatedata.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libprivatedata.so
new file mode 100644
index 00000000..4553b510
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libprivatedata.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libreactnativejni.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libreactnativejni.so
new file mode 100644
index 00000000..9135b36f
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libreactnativejni.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libyoga.so b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libyoga.so
new file mode 100644
index 00000000..9f64a48c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/jni/x86/libyoga.so differ
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_fade_in.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_fade_in.xml
new file mode 100644
index 00000000..7fe329fd
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_fade_in.xml
@@ -0,0 +1,7 @@
+
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_fade_out.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_fade_out.xml
new file mode 100644
index 00000000..4919eda8
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_fade_out.xml
@@ -0,0 +1,7 @@
+
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_push_up_in.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_push_up_in.xml
new file mode 100644
index 00000000..aef91bc5
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_push_up_in.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_push_up_out.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_push_up_out.xml
new file mode 100644
index 00000000..790e2758
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_push_up_out.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_slide_down.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_slide_down.xml
new file mode 100644
index 00000000..01876e5e
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_slide_down.xml
@@ -0,0 +1,6 @@
+
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_slide_up.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_slide_up.xml
new file mode 100644
index 00000000..6c96f698
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_slide_up.xml
@@ -0,0 +1,6 @@
+
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/dev_loading_view.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/dev_loading_view.xml
new file mode 100644
index 00000000..c503c9c7
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/dev_loading_view.xml
@@ -0,0 +1,14 @@
+
+
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/fps_view.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/fps_view.xml
new file mode 100644
index 00000000..468caa9f
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/fps_view.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_item_frame.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_item_frame.xml
new file mode 100644
index 00000000..ad23cbf4
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_item_frame.xml
@@ -0,0 +1,26 @@
+
+
+
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_item_title.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_item_title.xml
new file mode 100644
index 00000000..8091fb4d
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_item_title.xml
@@ -0,0 +1,10 @@
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_view.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_view.xml
new file mode 100644
index 00000000..832ac4fb
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_view.xml
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml
new file mode 100644
index 00000000..8c9a7445
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/values/values.xml
@@ -0,0 +1,107 @@
+
+
+ #eecc0000
+
+
+ Copy
+ Debug JS Remotely
+ Debug JS in Nuclide
+ The request to attach Nuclide could not reach Metro Bundler!
+ Stop Remote JS Debugging
+ Dismiss\n(ESC)
+ Toggle Inspector
+ Capture Heap
+ Enable Hot Reloading
+ Disable Hot Reloading
+ Unable to download JS bundle. Did you forget to start the development server or connect your device?
+ Enable Live Reload
+ Disable Live Reload
+ Loading from %1$s…
+ Show Perf Monitor
+ Hide Perf Monitor
+ Start/Stop Sampling Profiler
+ Reload\n(R,\u00A0R)
+ Reload
+ Unable to connect with remote debugger
+ Connecting to remote debugger
+ Report
+ Dev Settings
+ Catalyst Dev Settings
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/xml/preferences.xml b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/xml/preferences.xml
new file mode 100644
index 00000000..7ce20de3
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/xml/preferences.xml
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.soloader/soloader/0.1.0/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/com.facebook.soloader/soloader/0.1.0/AndroidManifest.xml
new file mode 100644
index 00000000..f4058955
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/com.facebook.soloader/soloader/0.1.0/AndroidManifest.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.soloader/soloader/0.1.0/R.txt b/android/app/build/intermediates/exploded-aar/com.facebook.soloader/soloader/0.1.0/R.txt
new file mode 100644
index 00000000..e69de29b
diff --git a/android/app/build/intermediates/exploded-aar/com.facebook.soloader/soloader/0.1.0/jars/classes.jar b/android/app/build/intermediates/exploded-aar/com.facebook.soloader/soloader/0.1.0/jars/classes.jar
new file mode 100644
index 00000000..c00f6ea2
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/com.facebook.soloader/soloader/0.1.0/jars/classes.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/AndroidManifest.xml b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/AndroidManifest.xml
new file mode 100644
index 00000000..0f636985
--- /dev/null
+++ b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/AndroidManifest.xml
@@ -0,0 +1,3 @@
+
+
+
diff --git a/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/R.txt b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/R.txt
new file mode 100644
index 00000000..e69de29b
diff --git a/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jars/classes.jar b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jars/classes.jar
new file mode 100644
index 00000000..d1cedcf2
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jars/classes.jar differ
diff --git a/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi-v7a/libicu_common.so b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi-v7a/libicu_common.so
new file mode 100644
index 00000000..e92e859c
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi-v7a/libicu_common.so differ
diff --git a/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi-v7a/libjsc.so b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi-v7a/libjsc.so
new file mode 100644
index 00000000..c72d14e9
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi-v7a/libjsc.so differ
diff --git a/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi/libicu_common.so b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi/libicu_common.so
new file mode 100644
index 00000000..828015d0
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/armeabi/libicu_common.so differ
diff --git a/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/x86/libicu_common.so b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/x86/libicu_common.so
new file mode 100644
index 00000000..802ff293
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/x86/libicu_common.so differ
diff --git a/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/x86/libjsc.so b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/x86/libjsc.so
new file mode 100644
index 00000000..ea95c918
Binary files /dev/null and b/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jni/x86/libjsc.so differ
diff --git a/android/app/build/intermediates/incremental-safeguard/debug/tag.txt b/android/app/build/intermediates/incremental-safeguard/debug/tag.txt
new file mode 100644
index 00000000..c01a13dc
--- /dev/null
+++ b/android/app/build/intermediates/incremental-safeguard/debug/tag.txt
@@ -0,0 +1 @@
+incremental task execution
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/compileDebugAidl/dependency.store b/android/app/build/intermediates/incremental/compileDebugAidl/dependency.store
new file mode 100644
index 00000000..8b8400dc
Binary files /dev/null and b/android/app/build/intermediates/incremental/compileDebugAidl/dependency.store differ
diff --git a/android/app/build/intermediates/incremental/mergeDebugAssets/merger.xml b/android/app/build/intermediates/incremental/mergeDebugAssets/merger.xml
new file mode 100644
index 00000000..d799153e
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/android/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
new file mode 100644
index 00000000..cd45cadc
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties b/android/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties
new file mode 100644
index 00000000..4e581e76
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties
@@ -0,0 +1,291 @@
+#Sat Sep 08 05:34:58 BRT 2018
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_bottom.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_expanded_menu_layout.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_top_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/xml/preferences.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/xml/preferences.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_enter.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/dev_loading_view.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/dev_loading_view.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_tab_indicator_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple_overlay_action_mode.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_longpressed_holo.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_light.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_radio.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_light.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view_list_item.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_textfield_search_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_spinner_textfield_background_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_toolbar.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_check_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_close_item_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_light.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_light.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_cancel_action.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_edit_text_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_dark.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/res/mipmap-mdpi/ic_launcher.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/mipmap-mdpi/ic_launcher.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_bottom.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_longpressed_holo.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_longpressed_holo.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_alert_dialog_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_dark.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_item_title.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/redbox_item_title.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_in.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_fade_in.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_media.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_template_media.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_dark.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_search_url_text.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_search_url_text.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_dialog_title_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_dark.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_icon.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_light.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/res/mipmap-hdpi/ic_launcher.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/mipmap-hdpi/ic_launcher.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_slide_down.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/catalyst_slide_down.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_action_bar_item_background_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_layout.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_slide_up.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/catalyst_slide_up.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_popup_background_mtrl_mult.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_longpressed_holo.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_longpressed_holo.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_title_item.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_bar.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_default_mtrl_shape.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_focused_holo.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_focused_holo.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_layout.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_ratingbar_full_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media_narrow.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/fps_view.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/fps_view.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_light.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_view.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_search_view.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_switch_thumb_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v23/abc_control_background_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_lines.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_template_lines.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_light.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/support_simple_spinner_dropdown_item.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_dark.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/mipmap-xhdpi/ic_launcher.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_dropdown_item_icons_2line.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_light.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_light.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_item_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_grow_fade_in_from_bottom.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_light.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_focused_holo.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_focused_holo.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_checkbox.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_action.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_media_action.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_multichoice_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_popup_menu_item_layout.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_borderless_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_light.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_focused_holo.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_focused_holo.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_clear_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_text_cursor_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_light.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_push_up_in.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_longpressed_holo.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_longpressed_holo.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_dark.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_light.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_view_list_nav_layout.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_focused_holo.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_focused_holo.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_item_layout.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_select_dialog_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_push_up_out.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_up_container.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_clear_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_fade_out.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/catalyst_fade_out.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_colored_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_top.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_internal_bg.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_view.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/redbox_view.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_light.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/layout/redbox_item_frame.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_dark.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_content_include.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/res/anim/catalyst_fade_in.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/catalyst_fade_in.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_btn_colored_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/mipmap-xxhdpi/ic_launcher.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_time.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_singlechoice_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_chronometer.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_shrink_fade_out_from_bottom.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_dark.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_dark.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_dark.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v23/abc_color_highlight_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_exit.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_out.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_fade_out.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_radio_material.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_popup_background_mtrl_mult.9.png
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_top.xml=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
+/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml
new file mode 100644
index 00000000..3f1db174
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigeer tuis"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeer op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "Soek …"
+ "Vee navraag uit"
+ "Soeknavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+ "Vou in"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml
new file mode 100644
index 00000000..e0030c8f
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml
@@ -0,0 +1,21 @@
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "%1$s፣ %2$s"
+ "%1$s፣ %2$s፣ %3$s"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "ፈልግ…"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%s ጋር ያጋሩ"
+ "ሰብስብ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml
new file mode 100644
index 00000000..f58dbd95
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml
@@ -0,0 +1,21 @@
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "بحث…"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+ "تصغير"
+ "+999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml
new file mode 100644
index 00000000..0f057600
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml
@@ -0,0 +1,20 @@
+
+
+ "Evə get"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuxarı get"
+ "Daha çox seçim"
+ "Hazırdır"
+ "Hamısına baxın"
+ "Tətbiq seçin"
+ "Axtarış..."
+ "Sorğunu təmizlə"
+ "Axtarış sorğusu"
+ "Axtarış"
+ "Sorğunu göndərin"
+ "Səsli axtarış"
+ "Bununla paylaşın"
+ "Dağıt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml
new file mode 100644
index 00000000..8a0c696b
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml
@@ -0,0 +1,21 @@
+
+
+ "Придвижване към „Начало“"
+ "„%1$s“ – %2$s"
+ "„%1$s“, „%2$s“ – %3$s"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "Търсете…"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %s"
+ "Свиване"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml
new file mode 100644
index 00000000..3372f0ea
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml
@@ -0,0 +1,21 @@
+
+
+ "হোম এ নেভিগেট করুন"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরো বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান চয়ন করুন"
+ "অনুসন্ধান..."
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী অনুসন্ধান করুন"
+ "অনুসন্ধান করুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে ভাগ করুন"
+ "%s এর সাথে ভাগ করুন"
+ "সঙ্কুচিত করুন"
+ "৯৯৯+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml
new file mode 100644
index 00000000..10f5444f
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml
@@ -0,0 +1,21 @@
+
+
+ "Navega a la pàgina d\'inici"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navega cap a dalt"
+ "Més opcions"
+ "Fet"
+ "Mostra\'ls tots"
+ "Selecciona una aplicació"
+ "Cerca..."
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+ "Replega"
+ "+999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml
new file mode 100644
index 00000000..188f33e5
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml
@@ -0,0 +1,21 @@
+
+
+ "Přejít na plochu"
+ "%1$s – %2$s"
+ "%1$s, %2$s – %3$s"
+ "Přejít nahoru"
+ "Více možností"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "Vyhledat…"
+ "Smazat dotaz"
+ "Vyhledávací dotaz"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávání"
+ "Sdílet pomocí"
+ "Sdílet pomocí %s"
+ "Sbalit"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml
new file mode 100644
index 00000000..96719cab
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml
@@ -0,0 +1,21 @@
+
+
+ "Naviger hjem"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Naviger op"
+ "Flere muligheder"
+ "Luk"
+ "Se alle"
+ "Vælg en app"
+ "Søg…"
+ "Ryd forespørgslen"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgslen"
+ "Talesøgning"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml
new file mode 100644
index 00000000..08abe190
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml
@@ -0,0 +1,21 @@
+
+
+ "Zur Startseite"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle ansehen"
+ "App auswählen"
+ "Suchen…"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suchen"
+ "Suchanfrage senden"
+ "Sprachsuche"
+ "Freigeben für"
+ "Freigeben für %s"
+ "Minimieren"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml
new file mode 100644
index 00000000..3a495e19
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml
@@ -0,0 +1,21 @@
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "Αναζήτηση…"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %s"
+ "Σύμπτυξη"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml
new file mode 100644
index 00000000..2089716f
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 00000000..2089716f
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 00000000..2089716f
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 00000000..22c5c281
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,21 @@
+
+
+ "Navegar a la página principal"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Elige una aplicación."
+ "Buscar…"
+ "Eliminar la consulta"
+ "Consulta de búsqueda"
+ "Búsqueda"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml
new file mode 100644
index 00000000..9b481e83
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml
@@ -0,0 +1,21 @@
+
+
+ "Ir a la pantalla de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "+999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml
new file mode 100644
index 00000000..0d792579
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigeerimine avaekraanile"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeerimine üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "Otsige …"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jagamine:"
+ "Jagamine kasutajaga %s"
+ "Ahendamine"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml
new file mode 100644
index 00000000..96741c02
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml
@@ -0,0 +1,21 @@
+
+
+ "Joan orri nagusira"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "Bilatu…"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahots bidezko bilaketa"
+ "Partekatu hauekin"
+ "Partekatu %s erabiltzailearekin"
+ "Tolestu"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml
new file mode 100644
index 00000000..ca13cadd
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml
@@ -0,0 +1,21 @@
+
+
+ "پیمایش به صفحه اصلی"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "انجام شد"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "جستجو…"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی شفاهی"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %s"
+ "کوچک کردن"
+ "۹۹۹+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml
new file mode 100644
index 00000000..532fb457
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml
@@ -0,0 +1,21 @@
+
+
+ "Siirry etusivulle"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Siirry ylös"
+ "Lisää"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "Haku…"
+ "Tyhjennä kysely"
+ "Hakulauseke"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jakaminen:"
+ "Jakaminen: %s"
+ "Kutista"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 00000000..7339848d
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,21 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "Terminé"
+ "Voir toutes les chaînes"
+ "Sélectionnez une application"
+ "Recherche en cours..."
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager"
+ "Partager avec %s"
+ "Réduire"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml
new file mode 100644
index 00000000..0cbcc535
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml
@@ -0,0 +1,21 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "Rechercher…"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+ "Réduire"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml
new file mode 100644
index 00000000..184bf5a5
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml
@@ -0,0 +1,21 @@
+
+
+ "Ir á páxina de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desprazarse cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todas"
+ "Escoller unha aplicación"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta de busca"
+ "Buscar"
+ "Enviar consulta"
+ "Busca de voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml
new file mode 100644
index 00000000..f2b2ad83
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "હોમ પર નેવિગેટ કરો"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ઉપર નેવિગેટ કરો"
+ "વધુ વિકલ્પો"
+ "થઈ ગયું"
+ "બધું જુઓ"
+ "એક એપ્લિકેશન પસંદ કરો"
+ "શોધો…"
+ "ક્વેરી સાફ કરો"
+ "શોધ ક્વેરી"
+ "શોધો"
+ "ક્વેરી સબમિટ કરો"
+ "વૉઇસ શોધ"
+ "આની સાથે શેર કરો"
+ "%s સાથે શેર કરો"
+ "સંકુચિત કરો"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
new file mode 100644
index 00000000..e38bb90b
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
new file mode 100644
index 00000000..d5a138ef
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml
new file mode 100644
index 00000000..002edc72
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml
@@ -0,0 +1,21 @@
+
+
+ "मुख्यपृष्ठ पर नेविगेट करें"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ऊपर नेविगेट करें"
+ "अधिक विकल्प"
+ "पूर्ण"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "खोजा जा रहा है…"
+ "क्वेरी साफ़ करें"
+ "खोज क्वेरी"
+ "खोजें"
+ "क्वेरी सबमिट करें"
+ "ध्वनि खोज"
+ "इसके द्वारा साझा करें"
+ "%s के साथ साझा करें"
+ "संक्षिप्त करें"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml
new file mode 100644
index 00000000..41887943
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml
@@ -0,0 +1,21 @@
+
+
+ "Idi na početnu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Idi gore"
+ "Dodatne opcije"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "Pretražite…"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraživanje"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeljenje sa"
+ "Dijeljenje sa: %s"
+ "Sažmi"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml
new file mode 100644
index 00000000..509e0acf
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml
@@ -0,0 +1,21 @@
+
+
+ "Ugrás a főoldalra"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Felfelé mozgatás"
+ "További lehetőségek"
+ "Kész"
+ "Összes megtekintése"
+ "Válasszon ki egy alkalmazást"
+ "Keresés…"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következővel: %s"
+ "Összecsukás"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml
new file mode 100644
index 00000000..756d2d98
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml
@@ -0,0 +1,21 @@
+
+
+ "Ուղղվել տուն"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Կատարված է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "Որոնում..."
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Տարածել"
+ "Տարածել ըստ %s"
+ "Թաքցնել"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml
new file mode 100644
index 00000000..853a2a70
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigasi ke beranda"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi naik"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "Telusuri..."
+ "Hapus kueri"
+ "Kueri penelusuran"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan dengan %s"
+ "Ciutkan"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml
new file mode 100644
index 00000000..92bd5451
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml
@@ -0,0 +1,21 @@
+
+
+ "Fara heim"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "Leita…"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leita"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+ "Minnka"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml
new file mode 100644
index 00000000..e5db43bf
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml
@@ -0,0 +1,21 @@
+
+
+ "Vai alla home page"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Vai in alto"
+ "Altre opzioni"
+ "Fine"
+ "Visualizza tutte"
+ "Scegli un\'applicazione"
+ "Cerca…"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi con %s"
+ "Comprimi"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml
new file mode 100644
index 00000000..2bea3b68
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml
@@ -0,0 +1,21 @@
+
+
+ "נווט לדף הבית"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכל"
+ "בחר אפליקציה"
+ "חפש…"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חפש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %s"
+ "כווץ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml
new file mode 100644
index 00000000..eeed6244
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml
@@ -0,0 +1,21 @@
+
+
+ "ホームへ移動"
+ "%1$s、%2$s"
+ "%1$s、%2$s、%3$s"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "検索…"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%sと共有"
+ "折りたたむ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml
new file mode 100644
index 00000000..7a4648c0
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml
@@ -0,0 +1,21 @@
+
+
+ "მთავარზე ნავიგაცია"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "ძიება..."
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "%s-თან გაზიარება"
+ "აკეცვა"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml
new file mode 100644
index 00000000..bd1bfb9d
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml
@@ -0,0 +1,21 @@
+
+
+ "Негізгі бетте қозғалу"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Дайын"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "Іздеу…"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%s бөлісу"
+ "Тасалау"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml
new file mode 100644
index 00000000..6f77ffe7
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml
@@ -0,0 +1,21 @@
+
+
+ "រកមើលទៅដើម"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "ស្វែងរក…"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %s"
+ "បង្រួម"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml
new file mode 100644
index 00000000..11bfa3f0
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಹುಡುಕಿ…"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "ಸಂಕುಚಿಸು"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml
new file mode 100644
index 00000000..9c490e83
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml
@@ -0,0 +1,21 @@
+
+
+ "홈 탐색"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "검색..."
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%s와(과) 공유"
+ "접기"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml
new file mode 100644
index 00000000..f123735f
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml
@@ -0,0 +1,21 @@
+
+
+ "Үйгө багыттоо"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "Издөө…"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%s аркылуу бөлүшүү"
+ "Жыйнап коюу"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml
new file mode 100644
index 00000000..c0686a4e
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml
@@ -0,0 +1,9 @@
+
+
+ true
+ true
+ 48dp
+ 32dp
+ 12dp
+ 14dp
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml
new file mode 100644
index 00000000..55aba508
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml
@@ -0,0 +1,14 @@
+
+
+ true
+ true
+ 440dp
+ 192dip
+ - 60%
+ - 90%
+ - 60%
+ - 90%
+ 4
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml
new file mode 100644
index 00000000..65dd8db1
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml
@@ -0,0 +1,21 @@
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ຊອກຫາ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນກັບ %s"
+ "ຫຍໍ້"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml
new file mode 100644
index 00000000..546521db
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml
@@ -0,0 +1,21 @@
+
+
+ "Eiti į pagrindinį puslapį"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "Ieškoti..."
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant „%s“"
+ "Sutraukti"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml
new file mode 100644
index 00000000..f2cfb7a9
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml
@@ -0,0 +1,21 @@
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "Meklējiet…"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar %s"
+ "Sakļaut"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml
new file mode 100644
index 00000000..1a3bb6db
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml
@@ -0,0 +1,19 @@
+
+
+ "Движи се кон дома"
+ "%1$s, %2$s, %3$s"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "Пребарување…"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+ "Собери"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml
new file mode 100644
index 00000000..db4e23aa
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതല് ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "തിരയുക…"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "ശബ്ദ തിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s എന്നതുമായി പങ്കിടുക"
+ "ചുരുക്കുക"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml
new file mode 100644
index 00000000..a7cbf624
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml
@@ -0,0 +1,21 @@
+
+
+ "Нүүр хуудас руу шилжих"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "Хайх..."
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+ "Хумих"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml
new file mode 100644
index 00000000..1f9d1fc1
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "मुख्यपृष्ठ नेव्हिगेट करा"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "शोधा…"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह सामायिक करा"
+ "%s सह सामायिक करा"
+ "संक्षिप्त करा"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml
new file mode 100644
index 00000000..0c2183ae
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigasi skrin utama"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "Cari…"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+ "Runtuhkan"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml
new file mode 100644
index 00000000..bd82251d
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml
@@ -0,0 +1,21 @@
+
+
+ "မူလနေရာကို သွားရန်"
+ "%1$s၊ %2$s"
+ "%1$s ၊ %2$s ၊ %3$s"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ရှာဖွေပါ..."
+ "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ကို မျှဝေပါရန်"
+ "ခေါက်ရန်"
+ "၉၉၉+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml
new file mode 100644
index 00000000..00f40b64
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml
@@ -0,0 +1,21 @@
+
+
+ "Gå til startsiden"
+ "%1$s – %2$s"
+ "%1$s – %2$s – %3$s"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "Søk …"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml
new file mode 100644
index 00000000..283912a0
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml
@@ -0,0 +1,21 @@
+
+
+ "गृह खोज्नुहोस्"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "खोज्नुहोस्..."
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग साझेदारी गर्नुहोस्"
+ "संक्षिप्त पार्नुहोस्"
+ "९९९+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml
new file mode 100644
index 00000000..ac2794fa
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigeren naar startpositie"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Gereed"
+ "Alles weergeven"
+ "Een app selecteren"
+ "Zoeken…"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+ "Samenvouwen"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa-rIN/values-pa-rIN.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa-rIN/values-pa-rIN.xml
new file mode 100644
index 00000000..8e0bf18c
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa-rIN/values-pa-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "ਹੋਰ ਚੋਣਾਂ"
+ "ਹੋ ਗਿਆ"
+ "ਸਭ ਦੇਖੋ"
+ "ਇੱਕ ਐਪ ਚੁਣੋ"
+ "ਖੋਜ…"
+ "ਸਵਾਲ ਹਟਾਓ"
+ "ਸਵਾਲ ਖੋਜੋ"
+ "ਖੋਜੋ"
+ "ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"
+ "ਵੌਇਸ ਖੋਜ"
+ "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "ਨਸ਼ਟ ਕਰੋ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml
new file mode 100644
index 00000000..f5ee5445
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml
@@ -0,0 +1,21 @@
+
+
+ "Przejdź do strony głównej"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Zobacz wszystkie"
+ "Wybierz aplikację"
+ "Szukaj…"
+ "Wyczyść zapytanie"
+ "Wyszukiwane hasło"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij dla"
+ "Udostępnij dla %s"
+ "Zwiń"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml
new file mode 100644
index 00000000..7a925dc7
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 00000000..b0a0ca7a
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,21 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Escolher uma aplicação"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com %s"
+ "Reduzir"
+ "+999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml
new file mode 100644
index 00000000..40b36d38
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml
@@ -0,0 +1,21 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml
new file mode 100644
index 00000000..de472fdf
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigați la ecranul de pornire"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Terminat"
+ "Afișați-le pe toate"
+ "Alegeți o aplicație"
+ "Căutați…"
+ "Ștergeți interogarea"
+ "Interogare de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți la %s"
+ "Restrângeți"
+ "˃999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml
new file mode 100644
index 00000000..7deb7bc8
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml
@@ -0,0 +1,21 @@
+
+
+ "Перейти на главный экран"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "Поиск"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ пользователю %s"
+ "Свернуть"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml
new file mode 100644
index 00000000..86ce6c9b
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml
@@ -0,0 +1,21 @@
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "සොයන්න..."
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%s සමඟ බෙදාගන්න"
+ "හකුළන්න"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml
new file mode 100644
index 00000000..8599320c
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml
@@ -0,0 +1,21 @@
+
+
+ "Prejsť na plochu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Prejsť hore"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetko"
+ "Zvoľte aplikáciu"
+ "Vyhľadať…"
+ "Vymazať dopyt"
+ "Vyhľadávací dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať pomocou"
+ "Zdieľať pomocou %s"
+ "Zbaliť"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml
new file mode 100644
index 00000000..01777986
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml
@@ -0,0 +1,21 @@
+
+
+ "Krmarjenje domov"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Krmarjenje navzgor"
+ "Več možnosti"
+ "Končano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "Iskanje …"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z"
+ "Deljenje z:"
+ "Strni"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq-rAL/values-sq-rAL.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq-rAL/values-sq-rAL.xml
new file mode 100644
index 00000000..3ac94391
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq-rAL/values-sq-rAL.xml
@@ -0,0 +1,21 @@
+
+
+ "Orientohu për në shtëpi"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ngjitu lart"
+ "Opsione të tjera"
+ "U krye!"
+ "Shikoji të gjitha"
+ "Zgjidh një aplikacion"
+ "Kërko..."
+ "Pastro pyetjen"
+ "Kërko pyetjen"
+ "Kërko"
+ "Dërgo pyetjen"
+ "Kërkim me zë"
+ "Shpërnda publikisht me"
+ "Shpërnda publikisht me %s"
+ "Shpalos"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml
new file mode 100644
index 00000000..0b199be0
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml
@@ -0,0 +1,21 @@
+
+
+ "Одлазак на Почетну"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "Претражите..."
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дели са апликацијом %s"
+ "Скупи"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml
new file mode 100644
index 00000000..11be8d68
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml
@@ -0,0 +1,21 @@
+
+
+ "Visa startsidan"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klart"
+ "Visa alla"
+ "Välj en app"
+ "Sök …"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+ "Komprimera"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml
new file mode 100644
index 00000000..3ff8de5c
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml
@@ -0,0 +1,21 @@
+
+
+ "Nenda mwanzo"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Nenda juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "Tafuta…"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Tafuta kwa kutamka"
+ "Shiriki na:"
+ "Shiriki na %s"
+ "Kunja"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
new file mode 100644
index 00000000..c7770591
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
@@ -0,0 +1,11 @@
+
+
+ 24dp
+ 64dp
+ 8dp
+ 8dp
+ 580dp
+ 16dp
+ 20dp
+ 5
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml
new file mode 100644
index 00000000..c26f9483
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "மேலே வழிசெலுத்து"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "தேடு..."
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%s உடன் பகிர்"
+ "சுருக்கு"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml
new file mode 100644
index 00000000..9fa86ae6
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "శోధించు..."
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "శోధించు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%sతో భాగస్వామ్యం చేయి"
+ "కుదించండి"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml
new file mode 100644
index 00000000..0a27e57e
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml
@@ -0,0 +1,21 @@
+
+
+ "นำทางไปหน้าแรก"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ค้นหา…"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์กับ %s"
+ "ยุบ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml
new file mode 100644
index 00000000..0a131ba5
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml
@@ -0,0 +1,21 @@
+
+
+ "Mag-navigate patungo sa home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Mag-navigate pataas"
+ "Higit pang mga opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng isang app"
+ "Maghanap…"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi sa/kay %s"
+ "I-collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml
new file mode 100644
index 00000000..c08c28c2
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml
@@ -0,0 +1,21 @@
+
+
+ "Ana ekrana git"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Tamamlandı"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "Ara…"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Şununla paylaş"
+ "%s ile paylaş"
+ "Daralt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml
new file mode 100644
index 00000000..9cd11778
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml
@@ -0,0 +1,21 @@
+
+
+ "Перейти на головний"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "Пошук…"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Надіслати через %s"
+ "Згорнути"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml
new file mode 100644
index 00000000..a1a3b872
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml
@@ -0,0 +1,21 @@
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "تلاش کریں…"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%s کے ساتھ اشتراک کریں"
+ "سکیڑیں"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml
new file mode 100644
index 00000000..50308605
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml
@@ -0,0 +1,20 @@
+
+
+ "Boshiga o‘tish"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuqoriga o‘tish"
+ "Qo‘shimcha sozlamalar"
+ "Tayyor"
+ "Barchasini ko‘rish"
+ "Dastur tanlang"
+ "Qidirish…"
+ "So‘rovni tozalash"
+ "So‘rovni izlash"
+ "Izlash"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Bo‘lishish:"
+ "Yig‘ish"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11/values-v11.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11/values-v11.xml
new file mode 100644
index 00000000..d074ce99
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11/values-v11.xml
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml
new file mode 100644
index 00000000..85e24166
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml
new file mode 100644
index 00000000..7239a2c8
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml
new file mode 100644
index 00000000..f41a414c
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml
new file mode 100644
index 00000000..7dad77f9
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml
@@ -0,0 +1,4 @@
+
+
+ 0px
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml
new file mode 100644
index 00000000..0a96e232
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml
@@ -0,0 +1,242 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml
new file mode 100644
index 00000000..2b074702
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml
new file mode 100644
index 00000000..5a45578f
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml
new file mode 100644
index 00000000..373754fe
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml
@@ -0,0 +1,21 @@
+
+
+ "Điều hướng về trang chủ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Điều hướng lên trên"
+ "Thêm tùy chọn"
+ "Xong"
+ "Xem tất cả"
+ "Chọn một ứng dụng"
+ "Tìm kiếm…"
+ "Xóa truy vấn"
+ "Tìm kiếm truy vấn"
+ "Tìm kiếm"
+ "Gửi truy vấn"
+ "Tìm kiếm bằng giọng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+ "Thu gọn"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml
new file mode 100644
index 00000000..fd9dac9b
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 3
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml
new file mode 100644
index 00000000..5b7dcf65
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ true
+ true
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml
new file mode 100644
index 00000000..dcd19ee3
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 4
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml
new file mode 100644
index 00000000..4c058c26
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml
new file mode 100644
index 00000000..966aafb2
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml
new file mode 100644
index 00000000..98b3f8c2
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml
@@ -0,0 +1,4 @@
+
+
+ 256dip
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
new file mode 100644
index 00000000..ba8d9dae
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
@@ -0,0 +1,10 @@
+
+
+ false
+ 192dip
+ - 60%
+ - 90%
+ - 50%
+ - 70%
+ 5
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 00000000..7f4dcc82
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,21 @@
+
+
+ "转到主屏幕"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "转到上一层级"
+ "更多选项"
+ "完成"
+ "查看全部"
+ "选择应用"
+ "搜索…"
+ "清除查询"
+ "搜索查询"
+ "搜索"
+ "提交查询"
+ "语音搜索"
+ "分享方式"
+ "通过%s分享"
+ "收起"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 00000000..ce8cf117
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,21 @@
+
+
+ "瀏覽主頁"
+ "%1$s:%2$s"
+ "%1$s (%2$s):%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "與「%s」分享"
+ "收合"
+ "999 +"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 00000000..eda92911
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,21 @@
+
+
+ "瀏覽首頁"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "查看全部"
+ "選擇應用程式"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "選擇分享對象"
+ "與「%s」分享"
+ "收合"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml
new file mode 100644
index 00000000..10addc51
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml
@@ -0,0 +1,21 @@
+
+
+ "Zulazulela ekhaya"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Zulazulela phezulu"
+ "Izinketho eziningi"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha uhlelo lokusebenza"
+ "Iyasesha..."
+ "Sula inkinga"
+ "Umbuzo wosesho"
+ "Sesha"
+ "Hambisa umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no-"
+ "Yabelana no-%s"
+ "Goqa"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml
new file mode 100644
index 00000000..734257d7
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml
@@ -0,0 +1,1607 @@
+
+
+
+
+
+
+ true
+ false
+ true
+ true
+ false
+ true
+ false
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ @color/material_grey_800
+ @android:color/white
+ @color/material_grey_850
+ @color/material_grey_50
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #eecc0000
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ @android:color/white
+ @android:color/black
+ #6680cbc4
+ #66009688
+ @color/bright_foreground_disabled_material_dark
+ @color/bright_foreground_disabled_material_light
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #fff5f5f5
+ #ffe0e0e0
+ #fffafafa
+ #ff757575
+ #ff424242
+ #ff303030
+ #ff212121
+ @android:color/black
+ @color/material_grey_600
+ @color/material_grey_900
+ @color/material_grey_100
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #42ffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 16dp
+ 56dp
+ 0dp
+ 0dp
+ 16dp
+ 10dp
+ 6dp
+ 40dp
+ 48dp
+ 180dp
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+ 320dp
+ 2dp
+ 4dp
+ 4dp
+ 8dp
+ - 65%
+ - 95%
+ 24dp
+ 18dp
+ - 0.30
+ - 0.26
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+ 296dp
+ 320dip
+ 160dip
+ 3dp
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+ - 80%
+ - 100%
+ - 320dp
+ - 320dp
+ - 0.30
+ - 0.26
+ - 0.26
+ - 0.20
+ - 0.12
+ 64dp
+ 64dp
+ 12dp
+ #3333B5E5
+
+
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+ 2
+ 127
+ 999
+ Navigate home
+ %1$s, %2$s
+ %1$s, %2$s, %3$s
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ RnTest
+ Copy
+ Debug JS Remotely
+ Debug JS in Nuclide
+ The request to attach Nuclide could not reach Metro Bundler!
+ Stop Remote JS Debugging
+ Dismiss\n(ESC)
+ Toggle Inspector
+ Capture Heap
+ Enable Hot Reloading
+ Disable Hot Reloading
+ Unable to download JS bundle. Did you forget to start the development server or connect your device?
+ Enable Live Reload
+ Disable Live Reload
+ Loading from %1$s…
+ Show Perf Monitor
+ Hide Perf Monitor
+ Start/Stop Sampling Profiler
+ Reload\n(R,\u00A0R)
+ Reload
+ Unable to connect with remote debugger
+ Connecting to remote debugger
+ Report
+ Dev Settings
+ Catalyst Dev Settings
+ 999+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugResources/merger.xml b/android/app/build/intermediates/incremental/mergeDebugResources/merger.xml
new file mode 100644
index 00000000..94d306b0
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugResources/merger.xml
@@ -0,0 +1,1480 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "संक्षिप्त करा" "क्वेरी स्पष्ट करा" "शोध" "%s सह सामायिक करा" "सर्व पहा" "एक अॅप निवडा" "%1$s, %2$s, %3$s" "वर नेव्हिगेट करा" "शोधा…" "पूर्ण झाले" "क्वेरी सबमिट करा" "शोध क्वेरी" "यांच्यासह सामायिक करा" "मुख्यपृष्ठ नेव्हिगेट करा" "व्हॉइस शोध" "%1$s, %2$s" "अधिक पर्याय" "999+" "भ्वाइस खोजी" "%1$s, %2$s" "एउटा अनुप्रयोग छान्नुहोस्" "%1$s, %2$s, %3$s" "जिज्ञासा पेस गर्नुहोस्" "प्रश्न हटाउनुहोस्" "जिज्ञासाको खोज गर्नुहोस्" "साझेदारी गर्नुहोस्..." "%s सँग साझेदारी गर्नुहोस्" "सबै हेर्नुहोस्" "सम्पन्न भयो" "खोज्नुहोस्..." "खोज्नुहोस्" "गृह खोज्नुहोस्" "९९९+" "माथि खोज्नुहोस्" "संक्षिप्त पार्नुहोस्" "थप विकल्पहरू" "Пребарај барање" "Движи се нагоре" "Избери апликација" "Пребарај" "Сподели со" "Пребарување…" "Гласовно пребарување" "%1$s, %2$s, %3$s" "Собери" "Готово" "Движи се кон дома" "999+" "Поднеси барање" "Види ги сите" "Повеќе опции" "Исчисти барање" "Consulta de busca" "Buscar" "Compartir con %s" "Desprazarse cara arriba" "Borrar consulta" "Feito" "Enviar consulta" "Contraer" "Máis opcións" "Compartir con" "Ver todas" "Buscar…" "Ir á páxina de inicio" "%1$s, %2$s" "Busca de voz" ">999" "%1$s, %2$s, %3$s" "Escoller unha aplicación" "Mai multe opțiuni" "Căutați" "Afișați-le pe toate" "Interogare de căutare" "Navigați la ecranul de pornire" "Alegeți o aplicație" "˃999" "Terminat" "Restrângeți" "Ștergeți interogarea" "Căutați…" "Trimiteți la" "Căutare vocală" "Trimiteți interogarea" "Trimiteți la %s" "%1$s, %2$s" "Navigați în sus" "%1$s, %2$s, %3$s" 4 0px "Orientohu për në shtëpi" "Shpërnda publikisht me %s" "Dërgo pyetjen" "Kërkim me zë" "Shpalos" "U krye!" "Kërko..." "%1$s, %2$s" "%1$s, %2$s, %3$s" "999+" "Zgjidh një aplikacion" "Opsione të tjera" "Kërko pyetjen" "Ngjitu lart" "Shikoji të gjitha" "Pastro pyetjen" "Kërko" "Shpërnda publikisht me" "Поисковый запрос" "Отправить запрос" "Открыть доступ пользователю %s" "%1$s, %2$s" ">999" "Поиск" "Перейти на главный экран" "Показать все" "Голосовой поиск" "Открыть доступ" "Выбрать приложение" "Поиск" "%1$s, %2$s, %3$s" "Удалить запрос" "Перейти вверх" "Свернуть" "Готово" "Другие параметры" "Maghanap…" "I-collapse" "Ibahagi sa/kay %s" "Tapos na" "Mag-navigate patungo sa home" "%1$s, %2$s, %3$s" "Paghahanap gamit ang boses" "Ibahagi sa/kay" "Pumili ng isang app" "Mag-navigate pataas" "Isumite ang query" "%1$s, %2$s" "Maghanap" "Tingnan lahat" "I-clear ang query" "999+" "Higit pang mga opsyon" "Query sa paghahanap" "Ուղարկել հարցումը" "Տարածել" "999+" "Տեսնել բոլորը" "Այլ ընտրանքներ" "Ուղղվել տուն" "Կատարված է" "Որոնել" "Որոնում..." "Մաքրել հարցումը" "Ձայնային որոնում" "Ուղղվել վերև" "Որոնման հարցում" "Թաքցնել" "Ընտրել ծրագիր" "Տարածել ըստ %s" "%1$s, %2$s" "%1$s, %2$s, %3$s" "提交查詢" "%1$s - %2$s:%3$s" "選擇分享對象" "%1$s:%2$s" "查看全部" "選擇應用程式" "清除查詢" "更多選項" "與「%s」分享" "搜尋" "搜尋查詢" "語音搜尋" "向上瀏覽" "瀏覽首頁" "完成" "999+" "收合" "搜尋…" "ప్రశ్నను క్లియర్ చేయి" "వీరితో భాగస్వామ్యం చేయి" "పైకి నావిగేట్ చేయండి" "అనువర్తనాన్ని ఎంచుకోండి" "%1$s, %2$s, %3$s" "%1$s, %2$s" "కుదించండి" "వాయిస్ శోధన" "శోధించు" "%sతో భాగస్వామ్యం చేయి" "999+" "అన్నీ చూడండి" "పూర్తయింది" "శోధించు..." "మరిన్ని ఎంపికలు" "హోమ్కు నావిగేట్ చేయండి" "ప్రశ్నని సమర్పించు" "ప్రశ్న శోధించండి" 5 192dip "%1$s ၊ %2$s ၊ %3$s" "ပြီးဆုံးပါပြီ" "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ" "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်" "အားလုံးကို ကြည့်ရန်" "ရှာဖွေပါ..." "အပေါ်သို့သွားရန်" "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်" "%1$s၊ %2$s" "%s ကို မျှဝေပါရန်" "ပိုမိုရွေးချယ်စရာများ" "ရှာစရာ အချက်အလက်နေရာ" "မျှဝေဖို့ ရွေးပါ" "ရှာဖွေရန်" "အသံဖြင့် ရှာဖွေခြင်း" "ခေါက်ရန်" "မူလနေရာကို သွားရန်" "၉၉၉+" "முடிந்தது" "தேடல் வினவல்" "மேலே வழிசெலுத்து" "%s உடன் பகிர்" "இதனுடன் பகிர்" "தேடு..." "%1$s, %2$s, %3$s" "முகப்பிற்கு வழிசெலுத்து" "பயன்பாட்டைத் தேர்வுசெய்க" "%1$s, %2$s" "மேலும் விருப்பங்கள்" "வினவலை அழி" "வினவலைச் சமர்ப்பி" "குரல் தேடல்" "தேடு" "999+" "எல்லாம் காட்டு" "சுருக்கு" "Scegli un\'applicazione" "Comprimi" "Ricerca vocale" "Cancella query" "Altre opzioni" "%1$s, %2$s, %3$s" "Fine" "Condividi con %s" "999+" "Visualizza tutte" "Vai in alto" "Cerca…" "Cerca" "Invia query" "Condividi con" "Query di ricerca" "%1$s, %2$s" "Vai alla home page" "Selecciona una aplicació" "Replega" "Esborra la consulta" "Cerca..." "Envia la consulta" "%1$s, %2$s" "Navega cap a dalt" "%1$s, %2$s, %3$s" "Comparteix amb" "Navega a la pàgina d\'inici" "Mostra\'ls tots" "Comparteix amb %s" "Consulta de cerca" "Cerca" "Fet" "Cerca per veu" "+999" "Més opcions" "Bilatu" "Tolestu" "Joan orri nagusira" "Garbitu kontsulta" "Bilatu…" "Partekatu hauekin" "Aukera gehiago" "Partekatu %s erabiltzailearekin" "Bilaketa-kontsulta" "Bidali kontsulta" "%1$s, %2$s, %3$s" "Ahots bidezko bilaketa" "%1$s, %2$s" "Joan gora" "Eginda" "Aukeratu aplikazio bat" "Ikusi guztiak" "999+" "%1$s, %2$s – %3$s" "Vyhledat…" "Sdílet pomocí %s" "Hledat" "Zobrazit vše" "Hlasové vyhledávání" "Přejít na plochu" "Odeslat dotaz" "Sdílet pomocí" "Hotovo" "Sbalit" "Více možností" "%1$s – %2$s" "Smazat dotaz" "Přejít nahoru" "Vyhledávací dotaz" "Vybrat aplikaci" "999+" "%1$s, %2$s" "Bununla paylaşın" "999+" "Sorğunu təmizlə" "Axtarış" "Yuxarı get" "Hamısına baxın" "Axtarış sorğusu" "Tətbiq seçin" "Səsli axtarış" "Evə get" "%1$s, %2$s, %3$s" "Axtarış..." "Daha çox seçim" "Hazırdır" "Dağıt" "Sorğunu göndərin" "提交查询" "转到上一层级" "999+" "更多选项" "语音搜索" "收起" "转到主屏幕" "%1$s:%2$s" "分享方式" "搜索" "选择应用" "查看全部" "%1$s - %2$s:%3$s" "搜索查询" "完成" "清除查询" "通过%s分享" "搜索…" "Navigasi ke beranda" "Lihat semua" "Bagikan dengan %s" "Navigasi naik" "Telusuri..." "Ciutkan" "Telusuri" "Bagikan dengan" "Opsi lain" "Pilih aplikasi" "Penelusuran suara" "999+" "%1$s, %2$s" "Selesai" "%1$s, %2$s, %3$s" "Hapus kueri" "Kirim kueri" "Kueri penelusuran" "%1$s、%2$s" "アプリの選択" "検索…" "検索キーワードを削除" "折りたたむ" "共有" "検索キーワードを送信" "上へ移動" "%sと共有" "すべて表示" "その他のオプション" "検索キーワード" "検索" "完了" "音声検索" "%1$s、%2$s、%3$s" "ホームへ移動" "999+" "Φωνητική αναζήτηση" "Κοινή χρήση με %s" "%1$s, %2$s, %3$s" "%1$s, %2$s" "Υποβολή ερωτήματος" "Αναζήτηση…" "Κοινή χρήση με" "999+" "Επιλέξτε κάποια εφαρμογή" "Διαγραφή ερωτήματος" "Πλοήγηση προς τα επάνω" "Σύμπτυξη" "Περισσότερες επιλογές" "Τέλος" "Πλοήγηση στην αρχική σελίδα" "Ερώτημα αναζήτησης" "Προβολή όλων" "Αναζήτηση" "Meklējiet…" "Skatīt visu" "Izvēlieties lietotni" "Pārvietoties uz sākuma ekrānu" "Meklēt" "Meklēšana ar balsi" "Gatavs" "Sakļaut" "999+" "Meklēšanas vaicājums" "Kopīgot ar:" "%1$s, %2$s: %3$s" "Iesniegt vaicājumu" "Vairāk opciju" "Pārvietoties augšup" "Notīrīt vaicājumu" "Kopīgot ar %s" "%1$s: %2$s" "Vælg en app" "%1$s, %2$s" "Indsend forespørgslen" "Ryd forespørgslen" "Søgeforespørgsel" "Naviger hjem" "Søg…" "%1$s, %2$s, %3$s" "Se alle" "999+" "Søg" "Del med" "Naviger op" "Skjul" "Luk" "Del med %s" "Flere muligheder" "Talesøgning" "Сұрақты іздеу" "Іздеу" "%1$s, %2$s" "Дайын" "%s бөлісу" "Дауыс арқылы іздеу" "%1$s, %2$s, %3$s" "Жоғары қозғалу" "Іздеу…" "Тасалау" "999+" "Сұрақты жіберу" "Бөлісу" "Сұрақты жою" "Басқа опциялар" "Қолданбаны таңдау" "Барлығын көру" "Негізгі бетте қозғалу" "সঙ্কুচিত করুন" "হোম এ নেভিগেট করুন" "৯৯৯+" "একটি অ্যাপ্লিকেশান চয়ন করুন" "অনুসন্ধান..." "উপরের দিকে নেভিগেট করুন" "ক্যোয়ারী সাফ করুন" "এর সাথে ভাগ করুন" "ক্যোয়ারী জমা দিন" "%s এর সাথে ভাগ করুন" "%1$s, %2$s" "ক্যোয়ারী অনুসন্ধান করুন" "আরো বিকল্প" "%1$s, %2$s, %3$s" "সবগুলো দেখুন" "সম্পন্ন হয়েছে" "অনুসন্ধান করুন" "ভয়েস অনুসন্ধান" "%1$s, %2$s" "Navigate home" "Done" "See all" "Voice search" "Search" "Choose an app" "%1$s, %2$s, %3$s" "Clear query" "Navigate up" "Share with %s" "Collapse" "More options" "999+" "Search…" "Submit query" "Share with" "Search query" "清除查詢" "999 +" "更多選項" "提交查詢" "收合" "與「%s」分享" "向上瀏覽" "語音搜尋" "顯示全部" "搜尋…" "選擇應用程式" "搜尋" "%1$s (%2$s):%3$s" "完成" "%1$s:%2$s" "搜尋查詢" "分享對象" "瀏覽主頁" "መጠይቅ ያስረክቡ" "የድምፅ ፍለጋ" "ከሚከተለው ጋር ያጋሩ" "ፈልግ…" "ወደ መነሻ ይዳስሱ" "መተግበሪያ ይምረጡ" "መጠይቅ አጽዳ" "ተጨማሪ አማራጮች" "የፍለጋ ጥያቄ" "%1$s፣ %2$s" "ወደ ላይ ይዳስሱ" "ከ%s ጋር ያጋሩ" "ተከናውኗል" "999+" "%1$s፣ %2$s፣ %3$s" "ፍለጋ" "ሰብስብ" "ሁሉንም ይመልከቱ" 32dp 14dp true 48dp 12dp true 8dp 580dp 20dp 8dp 64dp 5 24dp 16dp 20dp 14sp true 56dp @android:color/black 8dp #ff263238 2dp 16dp See all 8dp #8a000000 Share with %s 48dp #1f000000 Choose an app 999 #36ffffff #fff5f5f5 #6680cbc4 #ff5a595b false @dimen/abc_control_padding_material true @android:color/black #80ffffff false @android:color/white 10dp Done #ffffffff #ffe0e0e0 0dp - 320dp
4dp 2 8dip Search #ff616161 #39000000 64dp @android:color/white 7dp 64dp - 0.26
#66009688 #de000000 12sp @color/material_deep_teal_200 48dp #ff80cbc4 36dp Submit query 320dip 14sp @color/bright_foreground_disabled_material_light - 0.20
@color/material_grey_50 48dp @android:color/black 56sp 14sp - 95%
16sp 999+ Collapse #ffd6d7d7 -3dp %1$s, %2$s, %3$s 8dip #fffafafa - 0.30
- 80%
4dp #7fa87f - 0.12
@color/material_grey_850 5dp @android:color/black #42ffffff 296dp @color/bright_foreground_material_light #24000000 #80bebebe 180dp 10dp @android:color/white 127 14sp @dimen/abc_action_bar_content_inset_material 40dp @color/material_grey_900 @android:color/black @color/material_grey_100 22sp 34sp 16sp 24sp 12dp Search query #ff009688 #3333B5E5 6dp Navigate up 3dp - 0.26
#80323232 #ffbdbdbd More options - 320dp
220 - 100%
320dp 20sp 150 24dp #4Dffffff @color/bright_foreground_material_dark 32dip Navigate home - 0.30
112sp 16dp - 0.26
16dp #ff323232 160dip #fff1f1f1 #ff303030 0dp #b3ffffff #ff757575 4dp #ff21272b 16dp Share with @color/material_deep_teal_500 %1$s, %2$s 45sp @android:color/black #ffbebebe @color/material_grey_600 #ff212121 Voice search false #80000000 18sp 18dp @color/material_grey_800 48dp - 65%
Clear query true #ffbdbdbd #ff424242 @dimen/abc_control_inset_material #ff37474f 6dp true Search… @color/bright_foreground_disabled_material_dark "Recherche en cours..." "Revenir à l\'accueil" "Partager avec %s" ">999" "%1$s, %2$s" "Terminé" "%1$s, %2$s, %3$s" "Sélectionnez une application" "Rechercher" "Recherche vocale" "Partager" "Voir toutes les chaînes" "Réduire" "Effacer la requête" "Envoyer la requête" "Requête de recherche" "Plus d\'options" "Revenir en haut de la page" "Udostępnij dla %s" "Wyczyść zapytanie" "Wyszukiwanie głosowe" "Więcej opcji" "999+" "Udostępnij dla" "Gotowe" "Szukaj" "%1$s, %2$s, %3$s" "Przejdź do strony głównej" "%1$s, %2$s" "Wybierz aplikację" "Zobacz wszystkie" "Szukaj…" "Wyszukiwane hasło" "Wyślij zapytanie" "Zwiń" "Przejdź wyżej" "999+" "Gửi truy vấn" "Xóa truy vấn" "Chọn một ứng dụng" "Tìm kiếm…" "Chia sẻ với %s" "Thêm tùy chọn" "Xong" "Tìm kiếm bằng giọng nói" "%1$s, %2$s" "Xem tất cả" "Tìm kiếm" "%1$s, %2$s, %3$s" "Tìm kiếm truy vấn" "Chia sẻ với" "Điều hướng lên trên" "Điều hướng về trang chủ" "Thu gọn" "ជម្រើសច្រើនទៀត" "រួចរាល់" "សម្អាតសំណួរ" "ដាក់ស្នើសំណួរ" "ស្វែងរកសំណួរ" "ចែករំលែកជាមួយ %s" "%1$s, %2$s, %3$s" "មើលទាំងអស់" "ការស្វែងរកសំឡេង" "រកមើលឡើងលើ" "ចែករំលែកជាមួយ" "រកមើលទៅដើម" "%1$s, %2$s" "ស្វែងរក" "999+" "បង្រួម" "ជ្រើសកម្មវិធី" "ស្វែងរក…" "Бөлүшүү" "Издөө талаптары" "%s аркылуу бөлүшүү" "%1$s, %2$s, %3$s" "Колдонмо тандоо" "Издөө" "Үйгө багыттоо" "Үн аркылуу издөө" "Бардыгын көрүү" "Жыйнап коюу" "Талаптарды тазалоо" "Издөө…" "Талап жөнөтүү" "%1$s, %2$s" "Даяр" "Көбүрөөк мүмкүнчүлүктөр" "999+" "Жогору" "%1$s, %2$s, %3$s" "Dela med" ">999" "Visa alla" "%1$s, %2$s" "Sök …" "Sök" "Ta bort frågan" "Navigera uppåt" "Fler alternativ" "Dela med %s" "Klart" "Röstsökning" "Sökfråga" "Skicka fråga" "Välj en app" "Visa startsidan" "Komprimera" "વૉઇસ શોધ" "ઉપર નેવિગેટ કરો" "આની સાથે શેર કરો" "%1$s, %2$s" "થઈ ગયું" "સંકુચિત કરો" "શોધો" "હોમ પર નેવિગેટ કરો" "બધું જુઓ" "શોધો…" "%s સાથે શેર કરો" "%1$s, %2$s, %3$s" "એક એપ્લિકેશન પસંદ કરો" "શોધ ક્વેરી" "ક્વેરી સાફ કરો" "ક્વેરી સબમિટ કરો" "વધુ વિકલ્પો" "999+" "Krmarjenje navzgor" "Deljenje z:" "Iskanje" "Deljenje z" "Krmarjenje domov" "Glasovno iskanje" "Strni" "Izbira aplikacije" "Iskalna poizvedba" "%1$s, %2$s, %3$s" "Končano" "Iskanje …" "Pošiljanje poizvedbe" "Pokaži vse" "%1$s, %2$s" "Izbris poizvedbe" "999+" "Več možnosti" "Vymazať dopyt" "Hľadať" "Prejsť na plochu" "Zobraziť všetko" "Zdieľať pomocou" "Hlasové vyhľadávanie" "Zbaliť" "Vyhľadať…" "Vyhľadávací dopyt" "Zdieľať pomocou %s" "%1$s, %2$s" "Ďalšie možnosti" "Prejsť hore" "%1$s, %2$s, %3$s" "Odoslať dopyt" "Zvoľte aplikáciu" "Hotovo" "999+" "Tafuta" "%1$s, %2$s" "Shiriki na:" "Shiriki na %s" "Hoja ya utafutaji" "Chagua programu" "999+" "Futa hoja" "Nenda mwanzo" "Tafuta…" "Wasilisha hoja" "Tafuta kwa kutamka" "Nenda juu" "Nimemaliza" "Chaguo zaidi" "Kunja" "Angalia zote" "%1$s, %2$s, %3$s" "سکیڑیں" "استفسار صاف کریں" "استفسار جمع کرائیں" "اشتراک کریں مع" "اوپر نیویگیٹ کریں" "ہوم پر نیویگیٹ کریں" "صوتی تلاش" "مزید اختیارات" "%s کے ساتھ اشتراک کریں" "تلاش کریں…" "استفسار تلاش کریں" "ایک ایپ منتخب کریں" "سبھی دیکھیں" "تلاش کریں" "999+" "%1$s, %2$s, %3$s" "%1$s, %2$s" "ہو گیا" "Enviar consulta" "%1$s, %2$s" "Consulta de pesquisa" "Partilhar com %s" "Mais opções" "Partilhar com" "Escolher uma aplicação" "Concluído" "Navegar para a página inicial" "%1$s, %2$s, %3$s" "Pesquisar" "Reduzir" "Pesquisar..." "Limpar consulta" "Ver tudo" "Pesquisa por voz" "+999" "Navegar para cima" "ສົ່ງການຊອກຫາ" "ໂຕເລືອກອື່ນ" "ແບ່ງປັນກັບ %s" "ຫຍໍ້" "ລຶບຂໍ້ຄວາມຊອກຫາ" "999+" "ຊອກຫາດ້ວຍສຽງ" "ຂຶ້ນເທິງ" "ເລືອກແອັບຯ" "ຊອກຫາ" "%1$s, %2$s, %3$s" "ຊອກຫາ" "ແບ່ງປັນກັບ" "ກັບໄປໜ້າຫຼັກ" "%1$s, %2$s" "ເບິ່ງທັງຫມົດ" "ແລ້ວໆ" "ຊອກຫາ" "Bir uygulama seçin" "Daralt" "Sorguyu temizle" "999+" "Şununla paylaş" "Yukarı git" "%1$s, %2$s" "Diğer seçenekler" "%1$s, %2$s, %3$s" "Tamamlandı" "Ara…" "Sorguyu gönder" "%s ile paylaş" "Arama sorgusu" "Sesli arama" "Tümünü göster" "Ana ekrana git" "Ara" "მოთხოვნის გადაგზავნა" "ხმოვანი ძიება" "%1$s, %2$s" "მოთხოვნის გასუფთავება" "გაზიარება:" "აკეცვა" "%1$s, %2$s, %3$s" "მეტი ვარიანტები" "999+" "%s-თან გაზიარება" "მთავარზე ნავიგაცია" "დასრულდა" "ძიება" "ზემოთ ნავიგაცია" "ყველას ნახვა" "აპის არჩევა" "ძიება..." "ძიების მოთხოვნა" "999+" "Leita" "Fara heim" "%1$s, %2$s" "Leitarfyrirspurn" "Deila með" "%1$s, %2$s, %3$s" "Leita…" "Raddleit" "Fleiri valkostir" "Hreinsa fyrirspurn" "Deila með %s" "Senda fyrirspurn" "Sjá allt" "Minnka" "Lokið" "Fara upp" "Veldu forrit" "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" "ಹುಡುಕು" "ಮುಗಿದಿದೆ" "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" "ಹುಡುಕಿ…" "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" "%1$s, %2$s, %3$s" "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ" "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ" "%1$s, %2$s" "ಸಂಕುಚಿಸು" "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು" "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು" "999+" "ಧ್ವನಿ ಹುಡುಕಾಟ" 54dip true true "අවසාන වූ" "සෙවුම් විමසුම" "999+" "ඉහලට සංචාලනය කරන්න" "විමසුම යොමු කරන්න" "යෙදුමක් තෝරන්න" "%1$s, %2$s" "සොයන්න..." "විමසුම හිස් කරන්න" "සියල්ල බලන්න" "%1$s, %2$s, %3$s" "සමඟ බෙදාගන්න" "%s සමඟ බෙදාගන්න" "ගෙදරට සංචාලනය කරන්න" "සෙවීම" "තවත් විකල්ප" "හඬ සෙවීම" "හකුළන්න" "ค้นหาด้วยเสียง" "เสร็จสิ้น" "999+" "นำทางไปหน้าแรก" "แชร์กับ" "ยุบ" "แชร์กับ %s" "ส่งข้อความค้นหา" "%1$s, %2$s" "%1$s, %2$s, %3$s" "นำทางขึ้น" "ตัวเลือกอื่น" "ดูทั้งหมด" "ข้อความค้นหา" "ค้นหา…" "ค้นหา" "เลือกแอป" "ล้างข้อความค้นหา" "اشتراکگذاری با" "انتخاب برنامه" "%1$s، %2$s" "%1$s، %2$s، %3$s" "ارسال عبارت جستجو" "کوچک کردن" "پیمایش به صفحه اصلی" "گزینههای بیشتر" "جستجو" "جستجوی شفاهی" "۹۹۹+" "عبارت جستجو" "اشتراکگذاری با %s" "جستجو…" "پیمایش به بالا" "مشاهده همه" "انجام شد" "پاک کردن عبارت جستجو" "Išvalyti užklausą" "Pasirinkti programą" "Pateikti užklausą" "Sutraukti" "Bendrinti naudojant „%s“" "Eiti į viršų" "Ieškoti..." "Bendrinti naudojant" "999+" "%1$s, %2$s" "Paieška balsu" "Atlikta" "Paieškos užklausa" "Eiti į pagrindinį puslapį" "Paieška" "%1$s, %2$s, %3$s" "Daugiau parinkčių" "Peržiūrėti viską" - 60%
192dip 440dp - 60%
true true - 90%
4 - 90%
"Хайх" "Нүүр хуудас руу шилжих" "Нэмэлт сонголтууд" "Бүгдийг харах" "Хайх..." "Хайх асуулга" "%1$s, %2$s" "Хуваалцах" "%s-тай хуваалцах" "Асуулгыг цэвэрлэх" "%1$s, %2$s, %3$s" "Апп сонгох" "999+" "Дууссан" "Дуут хайлт" "Дээш шилжих" "Асуулгыг илгээх" "Хумих" "Päringu tühistamine" "%1$s, %2$s, %3$s" "Navigeerimine avaekraanile" "Valmis" "Jagamine kasutajaga %s" "Ahendamine" "Päringu esitamine" "Jagamine:" "Rohkem valikuid" "Otsingupäring" "999+" "Kuva kõik" "Otsige …" "Otsing" "Valige rakendus" "Navigeerimine üles" "Häälotsing" "%1$s, %2$s" "%1$s, %2$s, %3$s" "מחק שאילתה" "חפש" "בחר אפליקציה" "ראה הכל" "שתף עם %s" "עוד אפשרויות" "בוצע" "חפש…" "שלח שאילתה" "999+" "שאילתת חיפוש" "נווט לדף הבית" "%1$s, %2$s" "חיפוש קולי" "שתף עם" "נווט למעלה" "כווץ" "%1$s, %2$s, %3$s" "Voice search" "Submit query" "See all" "Clear query" "Navigate home" "Done" "More options" "Search" "999+" "%1$s, %2$s" "Search…" "Search query" "Collapse" "Navigate up" "Share with" "Choose an app" "Share with %s" "Valmis" "Lähetä kysely" "Jakaminen:" "Siirry ylös" "Siirry etusivulle" "Valitse sovellus" "Lisää" "Näytä kaikki" "Haku" "Kutista" "999+" "Tyhjennä kysely" "Puhehaku" "%1$s, %2$s, %3$s" "Hakulauseke" "Jakaminen: %s" "%1$s, %2$s" "Haku…" "%1$s, %2$s, %3$s" "Yuqoriga o‘tish" "So‘rovni tozalash" "Tayyor" "Dastur tanlang" "Boshiga o‘tish" "Izlash" "%1$s, %2$s" "Barchasini ko‘rish" "So‘rovni izlash" "Qidirish…" "Ovozli qidiruv" "So‘rov yaratish" "Qo‘shimcha sozlamalar" "Yig‘ish" "999+" "Bo‘lishish:" "Submit query" "Voice search" "%1$s, %2$s" "More options" "Search…" "%1$s, %2$s, %3$s" "Search query" "Share with %s" "Collapse" "See all" "Choose an app" "999+" "Done" "Share with" "Search" "Clear query" "Navigate home" "Navigate up" false "Tout afficher" "Partager avec" "Rechercher" "Sélectionner une application" "Envoyer la requête" "Revenir à l\'accueil" "Plus d\'options" "OK" "Requête de recherche" "Revenir en haut de la page" "%1$s, %2$s" "Partager avec %s" "Effacer la requête" "Réduire" ">999" "%1$s, %2$s, %3$s" "Rechercher…" "Recherche vocale" "ਸਵਾਲ ਖੋਜੋ" "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ" "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ" "ਹੋ ਗਿਆ" "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ" "%1$s, %2$s, %3$s" "ਸਭ ਦੇਖੋ" "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ" "ਖੋਜੋ" "ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ" "%1$s, %2$s" "ਇੱਕ ਐਪ ਚੁਣੋ" "ਸਵਾਲ ਹਟਾਓ" "ਨਸ਼ਟ ਕਰੋ" "999+" "ਹੋਰ ਚੋਣਾਂ" "ਖੋਜ…" "ਵੌਇਸ ਖੋਜ" "Buscar…" "Buscar" "Ver todo" "Consulta" "Borrar consulta" "Seleccionar una aplicación" "Enviar consulta" "Ir a la pantalla de inicio" "+999" "Compartir con %s" "Desplazarse hacia arriba" "%1$s, %2$s, %3$s" "Búsqueda por voz" "Listo" "Contraer" "%1$s, %2$s" "Más opciones" "Compartir con" "Gotovo" "Prikaži sve" "Odabir aplikacije" "Idi na početnu" "Pretraživanje" "%1$s, %2$s, %3$s" "Dodatne opcije" "Sažmi" "Glasovno pretraživanje" "Dijeljenje sa: %s" "%1$s, %2$s" "999+" "Pretražite…" "Upit za pretraživanje" "Dijeljenje sa" "Pošalji upit" "Idi gore" "Izbriši upit" "ഇവരുമായി പങ്കിടുക" "തിരയുക…" "തിരയൽ" "%1$s, %2$s" "തിരയൽ അന്വേഷണം" "%s എന്നതുമായി പങ്കിടുക" "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക" "എല്ലാം കാണുക" "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക" "999+" "കൂടുതല് ഓപ്ഷനുകള്" "പൂർത്തിയാക്കി" "ശബ്ദ തിരയൽ" "%1$s, %2$s, %3$s" "ചുരുക്കുക" "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക" "അന്വേഷണം മായ്ക്കുക" "അന്വേഷണം സമർപ്പിക്കുക" "Lekérdezés küldése" "Ugrás a főoldalra" "Lekérdezés törlése" "Összecsukás" "Megosztás a következővel: %s" "%1$s, %2$s, %3$s" "Hangalapú keresés" "999+" "Kész" "További lehetőségek" "Megosztás a következővel:" "Összes megtekintése" "Felfelé mozgatás" "Keresés…" "%1$s, %2$s" "Válasszon ki egy alkalmazást" "Keresés" "Keresési lekérdezés" "Meer opties" "Gereed" "Navigeren naar startpositie" "Alles weergeven" "Gesproken zoekopdracht" "Samenvouwen" "999+" "Zoeken" "Een app selecteren" "Delen met %s" "Zoeken…" "Zoekopdracht" "Delen met" "Zoekopdracht wissen" "Zoekopdracht verzenden" "%1$s, %2$s" "Omhoog navigeren" "%1$s, %2$s, %3$s" false "Търсене" "„%1$s“ – %2$s" "Търсете…" "Още опции" "Заявка за търсене" "999+" "Изчистване на заявката" "Готово" "Споделяне със: %s" "Изпращане на заявката" "„%1$s“, „%2$s“ – %3$s" "Изберете приложение" "Гласово търсене" "Придвижване нагоре" "Придвижване към „Начало“" "Вижте всички" "Споделяне със:" "Свиване" "Soeknavraag" "Sien alles" "%1$s, %2$s" "Deel met" "Kies \'n program" "Soek …" "Soek" "999+" "Stemsoektog" "Deel met %s" "Navigeer tuis" "%1$s, %2$s, %3$s" "Nog opsies" "Vou in" "Vee navraag uit" "Klaar" "Dien navraag in" "Navigeer op" "%1$s – %2$s – %3$s" "Flere alternativer" "Del med %s" "Del med" "Se alle" "Slett søket" "Søk" "Søkeord" "Velg en app" "Gå til startsiden" "Søk …" "Ferdig" "Skjul" "%1$s – %2$s" "999+" "Gå opp" "Utfør søket" "Talesøk" "पूर्ण" "%1$s, %2$s, %3$s" "ध्वनि खोज" "क्वेरी साफ़ करें" "%s के साथ साझा करें" "संक्षिप्त करें" "अधिक विकल्प" "कोई एप्लिकेशन चुनें" "सभी देखें" "खोज क्वेरी" "मुख्यपृष्ठ पर नेविगेट करें" "खोजें" "999+" "इसके द्वारा साझा करें" "ऊपर नेविगेट करें" "%1$s, %2$s" "खोजा जा रहा है…" "क्वेरी सबमिट करें" "Sprachsuche" "%1$s: %2$s" "Weitere Optionen" "Minimieren" "Suchanfrage löschen" "Suchanfrage" "Alle ansehen" "Fertig" "Zur Startseite" "Suchen…" "Freigeben für" "Suchen" "Freigeben für %s" "Nach oben" "999+" "App auswählen" "Suchanfrage senden" "%1$s, %2$s: %3$s" - 50%
false 192dip - 70%
5 - 60%
- 90%
"옵션 더보기" "검색" "%s와(과) 공유" "검색어" "위로 탐색" "검색어 삭제" "검색..." "%1$s, %2$s, %3$s" "음성 검색" "%1$s, %2$s" "검색어 보내기" "접기" "공유 대상" "완료" "홈 탐색" "전체 보기" "앱 선택" "999+" "محو طلب البحث" "خيارات إضافية" "تصغير" "التنقل إلى أعلى" "تم" "إرسال طلب البحث" "طلب البحث" "%1$s، %2$s، %3$s" "اختيار تطبيق" "بحث…" "التنقل إلى الشاشة الرئيسية" "+999" "مشاركة مع %s" "البحث الصوتي" "بحث" "%1$s، %2$s" "مشاركة مع" "عرض الكل" "Navegar a la página principal" "Elige una aplicación." "Buscar…" "Navegar hacia arriba" "Búsqueda por voz" "999+" "Consulta de búsqueda" "%1$s, %2$s, %3$s" "Enviar consulta" "Compartir con" "Contraer" "Listo" "Compartir con %s" "Más opciones" "%1$s, %2$s" "Eliminar la consulta" "Ver todo" "Búsqueda" "Limpar consulta" "Mais opções" "Compartilhar com %s" "Recolher" "%1$s, %2$s" "Enviar consulta" "Navegar para cima" "Concluído" "Consulta de pesquisa" "%1$s, %2$s, %3$s" "Navegar para a página inicial" "Ver tudo" "Compartilhar com" "999+" "Pesquisar" "Pesquisa por voz" "Selecione um app" "Pesquisar..." "Пошуковий запит" "Вибрати програму" "Пошук" "999+" "Переглянути всі" "Голосовий пошук" "Надіслати через %s" "%1$s, %2$s, %3$s" "Пошук…" "Перейти на головний" "Інші опції" "%1$s, %2$s" "Згорнути" "Очистити запит" "Готово" "Надіслати запит" "Надіслати через" "Перейти вгору" "Одлазак на Почетну" "%1$s, %2$s, %3$s" "Избор апликације" "Претражите..." "Дели са апликацијом %s" "Још опција" "Слање упита" "%1$s, %2$s" ">999" "Гласовна претрага" "Кретање нагоре" "Скупи" "Брисање упита" "Претрага" "Готово" "Дели са" "Упит за претрагу" "Прикажи све" "Runtuhkan" "Pilih apl" "Selesai" "%1$s, %2$s" "Lagi pilihan" "Lihat semua" "Carian suara" "Kongsi dengan %s" "Navigasi skrin utama" "Navigasi ke atas" "Cari" "999+" "%1$s, %2$s, %3$s" "Kongsi dengan" "Pertanyaan carian" "Serah pertanyaan" "Kosongkan pertanyaan" "Cari…" 256dip 3 "Iyasesha..." "%1$s, %2$s" "Hambisa umbuzo" "Yabelana no-%s" "%1$s, %2$s, %3$s" "Izinketho eziningi" "Kwenziwe" "Umbuzo wosesho" "Zulazulela phezulu" "Sula inkinga" "Sesha" "Yabelana no-" "Goqa" "Ukusesha ngezwi" "Khetha uhlelo lokusebenza" "Zulazulela ekhaya" "Buka konke" "999+" Dev Settings The request to attach Nuclide could not reach Metro Bundler! Hide Perf Monitor Enable Hot Reloading Copy Catalyst Dev Settings Toggle Inspector Loading from %1$s… Disable Hot Reloading Show Perf Monitor Unable to connect with remote debugger Reload\n(R,\u00A0R) Debug JS in Nuclide #eecc0000 Disable Live Reload Debug JS Remotely Stop Remote JS Debugging Start/Stop Sampling Profiler Dismiss\n(ESC) Reload Capture Heap Report Enable Live Reload Unable to download JS bundle. Did you forget to start the development server or connect your device? Connecting to remote debugger RnTest
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/mergeDebugShaders/merger.xml b/android/app/build/intermediates/incremental/mergeDebugShaders/merger.xml
new file mode 100644
index 00000000..fe936394
--- /dev/null
+++ b/android/app/build/intermediates/incremental/mergeDebugShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/incremental/packageDebug/dex-renamer-state.txt b/android/app/build/intermediates/incremental/packageDebug/dex-renamer-state.txt
new file mode 100644
index 00000000..9e068461
--- /dev/null
+++ b/android/app/build/intermediates/incremental/packageDebug/dex-renamer-state.txt
@@ -0,0 +1,4 @@
+#Sat Sep 08 05:35:40 BRT 2018
+base.0=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/dex/debug/folders/1000/1f/main
+renamed.0=classes.dex
+file.0=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/dex/debug/folders/1000/1f/main/classes.dex
diff --git a/android/app/build/intermediates/incremental/packageDebug/file-input-save-data.txt b/android/app/build/intermediates/incremental/packageDebug/file-input-save-data.txt
new file mode 100644
index 00000000..d3fe50e4
--- /dev/null
+++ b/android/app/build/intermediates/incremental/packageDebug/file-input-save-data.txt
@@ -0,0 +1,546 @@
+#Internal package file, do not edit.
+#Sat Sep 08 05:35:40 BRT 2018
+175.set=ANDROID_RESOURCE
+122.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libprivatedata.so
+60.set=ANDROID_RESOURCE
+129.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
+52.set=NATIVE_RESOURCE
+176.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/select_dialog_multichoice_material.xml
+144.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+53.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+44.set=NATIVE_RESOURCE
+36.set=ANDROID_RESOURCE
+28.set=ANDROID_RESOURCE
+98.set=ANDROID_RESOURCE
+136.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
+1.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_list_menu_item_checkbox.xml
+13.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+45.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_edit_text_material.xml
+60.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+92.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libreactnativejni.so
+8.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/catalyst_slide_up.xml
+99.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libicu_common.so
+100.set=ANDROID_RESOURCE
+106.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+162.set=ANDROID_RESOURCE
+143.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_action_menu_item_layout.xml
+153.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+52.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog_init.so
+62.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+154.set=ANDROID_RESOURCE
+59.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libglog.so
+146.set=ANDROID_RESOURCE
+69.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+9.set=ANDROID_RESOURCE
+138.set=NATIVE_RESOURCE
+113.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+12.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
+22.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+174.set=NATIVE_RESOURCE
+160.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+29.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+167.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+76.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+51.set=ANDROID_RESOURCE
+43.set=ANDROID_RESOURCE
+105.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
+35.set=ANDROID_RESOURCE
+152.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_action_bar_title_item.xml
+27.set=ANDROID_RESOURCE
+159.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
+68.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
+19.set=ANDROID_RESOURCE
+36.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+97.set=ANDROID_RESOURCE
+83.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+89.set=ANDROID_RESOURCE
+112.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-v23/abc_control_background_material.xml
+122.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+21.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+119.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
+129.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+28.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+166.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/abc_slide_in_bottom.xml
+176.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+75.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_action_bar_view_list_nav_layout.xml
+161.set=ANDROID_RESOURCE
+153.set=NATIVE_RESOURCE
+145.set=ANDROID_RESOURCE
+8.set=ANDROID_RESOURCE
+137.set=ANDROID_RESOURCE
+136.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+1.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+35.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
+129.set=ANDROID_RESOURCE
+45.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+82.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libgnustl_shared.so
+92.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+8.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+173.set=ANDROID_RESOURCE
+89.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/AndroidManifest.xml
+99.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+121.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
+50.set=ANDROID_RESOURCE
+128.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_item_background_holo_dark.xml
+42.set=ANDROID_RESOURCE
+175.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
+143.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+52.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+34.set=ANDROID_RESOURCE
+59.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+26.set=ANDROID_RESOURCE
+18.set=ANDROID_RESOURCE
+96.set=ANDROID_RESOURCE
+88.set=ANDROID_RESOURCE
+135.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_list_menu_item_radio.xml
+0.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
+44.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libyoga.so
+12.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+7.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_action_menu_layout.xml
+91.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
+98.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_popup_menu_item_layout.xml
+160.set=ANDROID_RESOURCE
+105.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+152.set=ANDROID_RESOURCE
+142.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/color/abc_primary_text_disable_only_material_dark.xml
+152.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+51.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
+144.set=ANDROID_RESOURCE
+7.set=ANDROID_RESOURCE
+159.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+58.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog.so
+136.set=ANDROID_RESOURCE
+68.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+128.set=ANDROID_RESOURCE
+180.set=NATIVE_RESOURCE
+172.set=ANDROID_RESOURCE
+112.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+11.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/select_dialog_singlechoice_material.xml
+21.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+119.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+28.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+166.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+75.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+41.set=ANDROID_RESOURCE
+33.set=ANDROID_RESOURCE
+104.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/mipmap-xhdpi-v4/ic_launcher.png
+25.set=ANDROID_RESOURCE
+151.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/notification_template_big_media.xml
+17.set=ANDROID_RESOURCE
+95.set=NATIVE_RESOURCE
+158.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libicu_common.so
+35.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+67.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/color/abc_search_url_text.xml
+87.set=ANDROID_RESOURCE
+82.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+79.set=ANDROID_RESOURCE
+89.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+111.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
+121.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+20.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_btn_radio_material.xml
+118.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_list_selector_holo_light.xml
+128.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+27.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/abc_shrink_fade_out_from_bottom.xml
+165.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/abc_fade_out.xml
+175.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+74.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/color/abc_primary_text_material_dark.xml
+151.set=ANDROID_RESOURCE
+143.set=ANDROID_RESOURCE
+6.set=ANDROID_RESOURCE
+135.set=ANDROID_RESOURCE
+127.set=ANDROID_RESOURCE
+135.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+34.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_search_dropdown_item_icons_2line.xml
+0.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+119.set=ANDROID_RESOURCE
+44.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+171.set=ANDROID_RESOURCE
+81.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_spinner_textfield_background_material.xml
+91.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+7.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+88.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/redbox_view.xml
+98.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+120.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_dialog_material_background_dark.xml
+40.set=ANDROID_RESOURCE
+127.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/redbox_item_frame.xml
+32.set=ANDROID_RESOURCE
+174.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libreactnativejni.so
+142.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+51.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+24.set=ANDROID_RESOURCE
+58.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+16.set=NATIVE_RESOURCE
+94.set=ANDROID_RESOURCE
+86.set=ANDROID_RESOURCE
+78.set=ANDROID_RESOURCE
+134.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
+11.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+43.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/abc_popup_exit.xml
+90.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
+6.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_alert_dialog_material.xml
+97.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
+150.set=ANDROID_RESOURCE
+104.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+142.set=ANDROID_RESOURCE
+141.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/color-v23/abc_color_highlight_material.xml
+151.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+5.set=ANDROID_RESOURCE
+50.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
+134.set=ANDROID_RESOURCE
+158.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+57.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/catalyst_slide_down.xml
+126.set=DEX
+67.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+118.set=ANDROID_RESOURCE
+170.set=ANDROID_RESOURCE
+111.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+10.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout-v17/notification_template_part_time.xml
+20.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+118.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+27.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+165.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+74.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+31.set=ANDROID_RESOURCE
+23.set=ANDROID_RESOURCE
+103.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libyoga.so
+15.set=ANDROID_RESOURCE
+150.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_cab_background_internal_bg.xml
+93.set=ANDROID_RESOURCE
+19.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout-v17/notification_template_big_media.xml
+85.set=ANDROID_RESOURCE
+157.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libfolly_json.so
+34.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+66.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_screen_content_include.xml
+77.set=ANDROID_RESOURCE
+81.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+69.set=ANDROID_RESOURCE
+88.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+110.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_screen_toolbar.xml
+120.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+117.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/notification_template_media.xml
+127.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+26.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_list_selector_holo_dark.xml
+164.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_action_bar_up_container.xml
+174.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+73.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi/libimagepipeline.so
+141.set=ANDROID_RESOURCE
+4.set=NATIVE_RESOURCE
+133.set=ANDROID_RESOURCE
+125.set=ANDROID_RESOURCE
+117.set=ANDROID_RESOURCE
+134.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+33.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/dev_loading_view.xml
+109.set=ANDROID_RESOURCE
+43.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+80.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_list_selector_background_transition_holo_dark.xml
+90.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+6.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+87.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/abc_fade_in.xml
+97.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+30.set=NATIVE_RESOURCE
+126.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/dex/debug/folders/1000/1f/main/classes.dex
+22.set=ANDROID_RESOURCE
+173.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout-v17/notification_template_part_chronometer.xml
+141.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+50.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+14.set=ANDROID_RESOURCE
+92.set=NATIVE_RESOURCE
+57.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+84.set=ANDROID_RESOURCE
+76.set=NATIVE_RESOURCE
+68.set=ANDROID_RESOURCE
+133.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/notification_media_action.xml
+10.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+42.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout-v17/notification_template_lines.xml
+180.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libjsc.so
+5.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/color-v11/abc_background_cache_hint_selector_material_light.xml
+49.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/color/abc_secondary_text_material_light.xml
+96.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
+140.set=ANDROID_RESOURCE
+103.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+3.set=NATIVE_RESOURCE
+140.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/notification_template_big_media_narrow.xml
+132.set=ANDROID_RESOURCE
+150.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+124.set=ANDROID_RESOURCE
+19.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+157.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+56.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/catalyst_fade_out.xml
+116.set=ANDROID_RESOURCE
+66.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+108.set=ANDROID_RESOURCE
+110.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+149.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/support_simple_spinner_dropdown_item.xml
+117.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+16.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libprivatedata.so
+26.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+164.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+73.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+21.set=ANDROID_RESOURCE
+13.set=ANDROID_RESOURCE
+102.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
+91.set=ANDROID_RESOURCE
+83.set=NATIVE_RESOURCE
+109.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_search_view.xml
+18.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/resources.arsc
+75.set=ANDROID_RESOURCE
+156.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-ldrtl-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+33.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+65.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png
+67.set=ANDROID_RESOURCE
+80.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+59.set=NATIVE_RESOURCE
+87.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+116.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/notification_template_lines.xml
+126.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/dex/debug/folders/1000/1f/main
+25.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_action_mode_close_item_material.xml
+163.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/xml/preferences.xml
+173.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+2.set=ANDROID_RESOURCE
+72.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
+131.set=ANDROID_RESOURCE
+79.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/abc_popup_enter.xml
+123.set=ANDROID_RESOURCE
+115.set=ANDROID_RESOURCE
+107.set=ANDROID_RESOURCE
+133.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+32.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_switch_thumb_material.xml
+42.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+180.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+39.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/notification_template_part_time.xml
+5.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+169.set=ANDROID_RESOURCE
+49.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+86.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/color/switch_thumb_material_dark.xml
+96.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+20.set=ANDROID_RESOURCE
+125.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-ldrtl-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+12.set=ANDROID_RESOURCE
+172.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/catalyst_push_up_out.xml
+140.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+90.set=ANDROID_RESOURCE
+82.set=NATIVE_RESOURCE
+179.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/mipmap-xxhdpi-v4/ic_launcher.png
+56.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+74.set=ANDROID_RESOURCE
+66.set=ANDROID_RESOURCE
+58.set=NATIVE_RESOURCE
+132.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
+41.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_screen_simple.xml
+139.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_action_mode_bar.xml
+4.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libgnustl_shared.so
+149.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+48.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/catalyst_push_up_in.xml
+16.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+95.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libglog_init.so
+1.set=ANDROID_RESOURCE
+130.set=ANDROID_RESOURCE
+102.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+122.set=NATIVE_RESOURCE
+109.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+114.set=ANDROID_RESOURCE
+18.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+146.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_dialog_material_background_light.xml
+156.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+55.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_cab_background_top_material.xml
+106.set=ANDROID_RESOURCE
+65.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+count=181
+168.set=ANDROID_RESOURCE
+148.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-v21/abc_btn_colored_material.xml
+116.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+15.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_expanded_menu_layout.xml
+25.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+163.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+72.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+11.set=ANDROID_RESOURCE
+79.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+101.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_btn_borderless_material.xml
+81.set=ANDROID_RESOURCE
+73.set=NATIVE_RESOURCE
+108.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_activity_chooser_view.xml
+17.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
+65.set=ANDROID_RESOURCE
+155.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/mipmap-hdpi-v4/ic_launcher.png
+64.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-ldrtl-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
+32.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+57.set=ANDROID_RESOURCE
+39.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+49.set=ANDROID_RESOURCE
+86.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+115.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_textfield_search_material.xml
+125.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+24.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/notification_media_cancel_action.xml
+0.set=ANDROID_RESOURCE
+162.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/abc_slide_out_top.xml
+172.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+71.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_list_menu_item_icon.xml
+121.set=ANDROID_RESOURCE
+169.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_select_dialog_material.xml
+179.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+78.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_activity_chooser_view_list_item.xml
+113.set=ANDROID_RESOURCE
+105.set=ANDROID_RESOURCE
+132.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+31.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_tab_indicator_material.xml
+41.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+167.set=ANDROID_RESOURCE
+139.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+38.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libfolly_json.so
+4.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+159.set=ANDROID_RESOURCE
+48.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+85.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
+95.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+10.set=ANDROID_RESOURCE
+124.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
+171.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout-v17/abc_alert_dialog_material.xml
+80.set=ANDROID_RESOURCE
+179.set=ANDROID_RESOURCE
+72.set=ANDROID_RESOURCE
+178.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_text_cursor_material.xml
+146.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+55.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+64.set=ANDROID_RESOURCE
+56.set=ANDROID_RESOURCE
+48.set=ANDROID_RESOURCE
+131.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_btn_check_material.xml
+40.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
+138.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/arm64-v8a/libimagepipeline.so
+3.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libjsc.so
+148.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+15.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+47.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/abc_slide_out_bottom.xml
+94.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/color/abc_secondary_text_material_dark.xml
+120.set=ANDROID_RESOURCE
+101.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+112.set=ANDROID_RESOURCE
+108.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+104.set=ANDROID_RESOURCE
+17.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+145.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout-v17/notification_template_media.xml
+155.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+54.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout-v21/abc_screen_toolbar.xml
+64.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+166.set=ANDROID_RESOURCE
+158.set=NATIVE_RESOURCE
+147.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_list_menu_item_layout.xml
+115.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+14.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/fps_view.xml
+24.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+162.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+61.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
+71.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+169.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+78.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+178.set=ANDROID_RESOURCE
+100.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/color/abc_primary_text_material_light.xml
+71.set=ANDROID_RESOURCE
+63.set=ANDROID_RESOURCE
+107.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
+55.set=ANDROID_RESOURCE
+154.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_list_selector_background_transition_holo_light.xml
+31.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+63.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-v21/abc_action_bar_item_background_material.xml
+47.set=ANDROID_RESOURCE
+38.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+39.set=ANDROID_RESOURCE
+85.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+114.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
+124.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+23.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
+161.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout-v17/dev_loading_view.xml
+171.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+70.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libimagepipeline.so
+111.set=ANDROID_RESOURCE
+168.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/abc_grow_fade_in_from_bottom.xml
+178.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+77.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout-v17/notification_template_big_media_narrow.xml
+103.set=NATIVE_RESOURCE
+165.set=ANDROID_RESOURCE
+131.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+30.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libimagepipeline.so
+40.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+157.set=NATIVE_RESOURCE
+138.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+37.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
+3.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+149.set=ANDROID_RESOURCE
+47.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+84.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/catalyst_fade_in.xml
+94.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+123.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/redbox_item_title.xml
+177.set=ANDROID_RESOURCE
+170.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
+70.set=NATIVE_RESOURCE
+62.set=ANDROID_RESOURCE
+177.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout-v17/abc_dialog_title_material.xml
+145.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+54.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+54.set=ANDROID_RESOURCE
+46.set=ANDROID_RESOURCE
+38.set=NATIVE_RESOURCE
+130.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
+137.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_ratingbar_full_material.xml
+2.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_btn_default_mtrl_shape.xml
+147.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+14.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+46.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
+61.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+93.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_dialog_title_material.xml
+9.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/notification_template_part_chronometer.xml
+110.set=ANDROID_RESOURCE
+100.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+102.set=ANDROID_RESOURCE
+107.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+144.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_btn_colored_material.xml
+154.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+53.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/select_dialog_item_material.xml
+63.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+164.set=ANDROID_RESOURCE
+156.set=ANDROID_RESOURCE
+148.set=ANDROID_RESOURCE
+114.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+13.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout/abc_screen_simple_overlay_action_mode.xml
+23.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+161.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+60.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-ldrtl-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
+70.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+176.set=ANDROID_RESOURCE
+168.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+77.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+61.set=ANDROID_RESOURCE
+53.set=ANDROID_RESOURCE
+106.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/layout-v17/abc_search_view.xml
+45.set=ANDROID_RESOURCE
+153.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libfb.so
+30.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main
+62.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/color/abc_primary_text_disable_only_material_light.xml
+37.set=ANDROID_RESOURCE
+29.set=NATIVE_RESOURCE
+37.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+69.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/mipmap-mdpi-v4/ic_launcher.png
+84.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+99.set=NATIVE_RESOURCE
+113.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
+123.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+22.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
+160.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/color/switch_thumb_material_light.xml
+170.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+29.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libfb.so
+101.set=ANDROID_RESOURCE
+167.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/anim/abc_slide_in_top.xml
+177.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+76.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86_64/libimagepipeline.so
+163.set=ANDROID_RESOURCE
+155.set=ANDROID_RESOURCE
+130.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+147.set=ANDROID_RESOURCE
+137.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+36.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_/res/drawable/abc_item_background_holo_light.xml
+2.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+139.set=ANDROID_RESOURCE
+46.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+83.file=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi/libicu_common.so
+93.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
+9.base=/Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/res/resources-debug.ap_
diff --git a/android/app/build/intermediates/incremental/packageDebug/zip-cache/KGUXUbwP2XBQb+Fw5z8kJNX+6x8= b/android/app/build/intermediates/incremental/packageDebug/zip-cache/KGUXUbwP2XBQb+Fw5z8kJNX+6x8=
new file mode 100644
index 00000000..b86f6c79
Binary files /dev/null and b/android/app/build/intermediates/incremental/packageDebug/zip-cache/KGUXUbwP2XBQb+Fw5z8kJNX+6x8= differ
diff --git a/android/app/build/intermediates/manifests/full/debug/AndroidManifest.xml b/android/app/build/intermediates/manifests/full/debug/AndroidManifest.xml
new file mode 100644
index 00000000..664edbc3
--- /dev/null
+++ b/android/app/build/intermediates/manifests/full/debug/AndroidManifest.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/pre-dexed/debug/bolts-tasks-1.4.0_10cfa084ce8cbd71bf495e9781cffacf88ba063b.jar b/android/app/build/intermediates/pre-dexed/debug/bolts-tasks-1.4.0_10cfa084ce8cbd71bf495e9781cffacf88ba063b.jar
new file mode 100644
index 00000000..0a396f32
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/bolts-tasks-1.4.0_10cfa084ce8cbd71bf495e9781cffacf88ba063b.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/com.android.support-appcompat-v7-23.0.1_f42a23aa2a294aad722f2fadc5d5230cb9205d03.jar b/android/app/build/intermediates/pre-dexed/debug/com.android.support-appcompat-v7-23.0.1_f42a23aa2a294aad722f2fadc5d5230cb9205d03.jar
new file mode 100644
index 00000000..db6c3194
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/com.android.support-appcompat-v7-23.0.1_f42a23aa2a294aad722f2fadc5d5230cb9205d03.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/com.android.support-support-v4-23.0.1_528b5f91c3ee1521d2636555e2dd9cce539ccb4a.jar b/android/app/build/intermediates/pre-dexed/debug/com.android.support-support-v4-23.0.1_528b5f91c3ee1521d2636555e2dd9cce539ccb4a.jar
new file mode 100644
index 00000000..424f577d
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/com.android.support-support-v4-23.0.1_528b5f91c3ee1521d2636555e2dd9cce539ccb4a.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/com.facebook.fbui.textlayoutbuilder-textlayoutbuilder-1.0.0_bdb0855e49a75e175fc9fa99a1789f00333b7e4a.jar b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fbui.textlayoutbuilder-textlayoutbuilder-1.0.0_bdb0855e49a75e175fc9fa99a1789f00333b7e4a.jar
new file mode 100644
index 00000000..21cc1928
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fbui.textlayoutbuilder-textlayoutbuilder-1.0.0_bdb0855e49a75e175fc9fa99a1789f00333b7e4a.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-drawee-1.3.0_75311950b1391c44f86e57466c1eedc80175b0f5.jar b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-drawee-1.3.0_75311950b1391c44f86e57466c1eedc80175b0f5.jar
new file mode 100644
index 00000000..9cfd0bd8
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-drawee-1.3.0_75311950b1391c44f86e57466c1eedc80175b0f5.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-fbcore-1.3.0_b9221220ca2d9446531878c5086d5f91a4fe0bff.jar b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-fbcore-1.3.0_b9221220ca2d9446531878c5086d5f91a4fe0bff.jar
new file mode 100644
index 00000000..8a032118
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-fbcore-1.3.0_b9221220ca2d9446531878c5086d5f91a4fe0bff.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-fresco-1.3.0_c7f8ad41cdcd1e7050644a4ae6f8463df2dff506.jar b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-fresco-1.3.0_c7f8ad41cdcd1e7050644a4ae6f8463df2dff506.jar
new file mode 100644
index 00000000..7e4fbe9e
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-fresco-1.3.0_c7f8ad41cdcd1e7050644a4ae6f8463df2dff506.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-imagepipeline-1.3.0_a16f524043faa2ae3541bce52876974efbd930e7.jar b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-imagepipeline-1.3.0_a16f524043faa2ae3541bce52876974efbd930e7.jar
new file mode 100644
index 00000000..3647125a
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-imagepipeline-1.3.0_a16f524043faa2ae3541bce52876974efbd930e7.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-imagepipeline-base-1.3.0_72c237d76fcfd6827fca129254d07b56587c39f5.jar b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-imagepipeline-base-1.3.0_72c237d76fcfd6827fca129254d07b56587c39f5.jar
new file mode 100644
index 00000000..cf02e63e
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-imagepipeline-base-1.3.0_72c237d76fcfd6827fca129254d07b56587c39f5.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-imagepipeline-okhttp3-1.3.0_abc19351b1ff5bdcad787683e7c382354b909bcf.jar b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-imagepipeline-okhttp3-1.3.0_abc19351b1ff5bdcad787683e7c382354b909bcf.jar
new file mode 100644
index 00000000..7b917d95
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/com.facebook.fresco-imagepipeline-okhttp3-1.3.0_abc19351b1ff5bdcad787683e7c382354b909bcf.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/com.facebook.react-react-native-0.55.4_b45c25d2dca55ab64c53ddc9b560772eae947ba5.jar b/android/app/build/intermediates/pre-dexed/debug/com.facebook.react-react-native-0.55.4_b45c25d2dca55ab64c53ddc9b560772eae947ba5.jar
new file mode 100644
index 00000000..b0a7877e
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/com.facebook.react-react-native-0.55.4_b45c25d2dca55ab64c53ddc9b560772eae947ba5.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/com.facebook.soloader-soloader-0.1.0_bc77d0f27138cb643f463667d3ee6e933be4b0ab.jar b/android/app/build/intermediates/pre-dexed/debug/com.facebook.soloader-soloader-0.1.0_bc77d0f27138cb643f463667d3ee6e933be4b0ab.jar
new file mode 100644
index 00000000..fcbb8f32
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/com.facebook.soloader-soloader-0.1.0_bc77d0f27138cb643f463667d3ee6e933be4b0ab.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/debug_2f6f9058dfdec4b7da3f28da0e35739a35359075.jar b/android/app/build/intermediates/pre-dexed/debug/debug_2f6f9058dfdec4b7da3f28da0e35739a35359075.jar
new file mode 100644
index 00000000..116d59fe
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/debug_2f6f9058dfdec4b7da3f28da0e35739a35359075.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/infer-annotations-4.0_77042d7d82d1344ba4146e31cb8f88e60aa07d0a.jar b/android/app/build/intermediates/pre-dexed/debug/infer-annotations-4.0_77042d7d82d1344ba4146e31cb8f88e60aa07d0a.jar
new file mode 100644
index 00000000..6a845a20
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/infer-annotations-4.0_77042d7d82d1344ba4146e31cb8f88e60aa07d0a.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/internal_impl-23.0.1_7328b92404442c1a9df5c76f23460bf733357863.jar b/android/app/build/intermediates/pre-dexed/debug/internal_impl-23.0.1_7328b92404442c1a9df5c76f23460bf733357863.jar
new file mode 100644
index 00000000..6a10892b
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/internal_impl-23.0.1_7328b92404442c1a9df5c76f23460bf733357863.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/javax.inject-1_67f058107c7db0b6067dca9623a9b50059955465.jar b/android/app/build/intermediates/pre-dexed/debug/javax.inject-1_67f058107c7db0b6067dca9623a9b50059955465.jar
new file mode 100644
index 00000000..0b3dcdb2
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/javax.inject-1_67f058107c7db0b6067dca9623a9b50059955465.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/jsr305-3.0.0_c839946581b62966a75ad3119e92ffa7b3d05b4e.jar b/android/app/build/intermediates/pre-dexed/debug/jsr305-3.0.0_c839946581b62966a75ad3119e92ffa7b3d05b4e.jar
new file mode 100644
index 00000000..4b22b3ef
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/jsr305-3.0.0_c839946581b62966a75ad3119e92ffa7b3d05b4e.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/okhttp-3.6.0_10f4b397abc4efda49ff9d613a0f0465ef5d4574.jar b/android/app/build/intermediates/pre-dexed/debug/okhttp-3.6.0_10f4b397abc4efda49ff9d613a0f0465ef5d4574.jar
new file mode 100644
index 00000000..c8d2327c
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/okhttp-3.6.0_10f4b397abc4efda49ff9d613a0f0465ef5d4574.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/okhttp-urlconnection-3.6.0_c03eb5d70137b54d2c4c18c8a9db9e4050bb03ac.jar b/android/app/build/intermediates/pre-dexed/debug/okhttp-urlconnection-3.6.0_c03eb5d70137b54d2c4c18c8a9db9e4050bb03ac.jar
new file mode 100644
index 00000000..192a5acd
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/okhttp-urlconnection-3.6.0_c03eb5d70137b54d2c4c18c8a9db9e4050bb03ac.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/okio-1.13.0_8e8eb86c36139b8567befff4bfc4e69569acc8a3.jar b/android/app/build/intermediates/pre-dexed/debug/okio-1.13.0_8e8eb86c36139b8567befff4bfc4e69569acc8a3.jar
new file mode 100644
index 00000000..779aa109
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/okio-1.13.0_8e8eb86c36139b8567befff4bfc4e69569acc8a3.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/staticlayout-proxy-1.0_a2ab6365770261984d4ffe84252b5511849d6655.jar b/android/app/build/intermediates/pre-dexed/debug/staticlayout-proxy-1.0_a2ab6365770261984d4ffe84252b5511849d6655.jar
new file mode 100644
index 00000000..3dd1df96
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/staticlayout-proxy-1.0_a2ab6365770261984d4ffe84252b5511849d6655.jar differ
diff --git a/android/app/build/intermediates/pre-dexed/debug/support-annotations-23.0.1_5d26411af47546254d2605a668c3fe680730a8dd.jar b/android/app/build/intermediates/pre-dexed/debug/support-annotations-23.0.1_5d26411af47546254d2605a668c3fe680730a8dd.jar
new file mode 100644
index 00000000..24e8530e
Binary files /dev/null and b/android/app/build/intermediates/pre-dexed/debug/support-annotations-23.0.1_5d26411af47546254d2605a668c3fe680730a8dd.jar differ
diff --git a/android/app/build/intermediates/res/merged/debug/anim/abc_fade_in.xml b/android/app/build/intermediates/res/merged/debug/anim/abc_fade_in.xml
new file mode 100644
index 00000000..0b1d093c
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/abc_fade_in.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/anim/abc_fade_out.xml b/android/app/build/intermediates/res/merged/debug/anim/abc_fade_out.xml
new file mode 100644
index 00000000..85b1da04
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/abc_fade_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml b/android/app/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
new file mode 100644
index 00000000..1e9b12d1
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml b/android/app/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
new file mode 100644
index 00000000..420c20f8
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml b/android/app/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
new file mode 100644
index 00000000..708aac6a
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml b/android/app/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
new file mode 100644
index 00000000..09f5cf3c
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml b/android/app/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
new file mode 100644
index 00000000..648b22e5
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml b/android/app/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
new file mode 100644
index 00000000..dab0606e
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml b/android/app/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
new file mode 100644
index 00000000..beae155b
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml b/android/app/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
new file mode 100644
index 00000000..f721cd18
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/anim/catalyst_fade_in.xml b/android/app/build/intermediates/res/merged/debug/anim/catalyst_fade_in.xml
new file mode 100644
index 00000000..7fe329fd
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/catalyst_fade_in.xml
@@ -0,0 +1,7 @@
+
+
diff --git a/android/app/build/intermediates/res/merged/debug/anim/catalyst_fade_out.xml b/android/app/build/intermediates/res/merged/debug/anim/catalyst_fade_out.xml
new file mode 100644
index 00000000..4919eda8
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/catalyst_fade_out.xml
@@ -0,0 +1,7 @@
+
+
diff --git a/android/app/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml b/android/app/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml
new file mode 100644
index 00000000..aef91bc5
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
diff --git a/android/app/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml b/android/app/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml
new file mode 100644
index 00000000..790e2758
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
diff --git a/android/app/build/intermediates/res/merged/debug/anim/catalyst_slide_down.xml b/android/app/build/intermediates/res/merged/debug/anim/catalyst_slide_down.xml
new file mode 100644
index 00000000..01876e5e
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/catalyst_slide_down.xml
@@ -0,0 +1,6 @@
+
+
diff --git a/android/app/build/intermediates/res/merged/debug/anim/catalyst_slide_up.xml b/android/app/build/intermediates/res/merged/debug/anim/catalyst_slide_up.xml
new file mode 100644
index 00000000..6c96f698
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/anim/catalyst_slide_up.xml
@@ -0,0 +1,6 @@
+
+
diff --git a/android/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml b/android/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
new file mode 100644
index 00000000..b95cde62
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml b/android/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
new file mode 100644
index 00000000..d7c4b285
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml b/android/app/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml
new file mode 100644
index 00000000..55279430
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml b/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
new file mode 100644
index 00000000..d340ea5e
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml b/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
new file mode 100644
index 00000000..954b58ab
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml b/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
new file mode 100644
index 00000000..2462f7e7
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml b/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
new file mode 100644
index 00000000..204d0be8
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/color/abc_search_url_text.xml b/android/app/build/intermediates/res/merged/debug/color/abc_search_url_text.xml
new file mode 100644
index 00000000..e222ae3e
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/color/abc_search_url_text.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml b/android/app/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
new file mode 100644
index 00000000..2b9f7847
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml b/android/app/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
new file mode 100644
index 00000000..d4bab1fd
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml b/android/app/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
new file mode 100644
index 00000000..f7eb3548
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml b/android/app/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
new file mode 100644
index 00000000..2ab38db5
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 00000000..f534f58a
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 00000000..99110085
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 00000000..69ff9dde
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 00000000..9218981b
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 00000000..a5885763
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 00000000..b184dbc6
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 00000000..6549c527
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 00000000..38a55f93
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 00000000..50a350f4
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 00000000..1e0d4c34
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..f61e8e3e
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_clear_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 00000000..cc83d7b2
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..65ccd8f4
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..b9ff1db5
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..70eb0737
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..e78bcaf5
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 00000000..9a878205
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 00000000..8610c501
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 00000000..2d971a94
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 00000000..ee408129
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..b9baa0cc
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..a87d2cdc
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 00000000..3becd3ac
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_focused_holo.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_focused_holo.9.png
new file mode 100644
index 00000000..7ffeb1d0
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_focused_holo.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_longpressed_holo.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 00000000..658b6945
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_longpressed_holo.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_dark.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 00000000..c10a7bfb
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_light.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 00000000..d290ccb9
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 00000000..e66354dd
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 00000000..dc1616c6
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 00000000..2bf5a21c
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_popup_background_mtrl_mult.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 00000000..2db7619b
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..8b21cc95
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 00000000..09edb6b5
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 00000000..43fd9eeb
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..2cb0180f
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..92ad582a
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..42e291e0
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..18dc90c5
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..2e1062fa
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..a262b0c8
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..9ed43ca4
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..d8cb2d6c
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..e300b7cf
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..05b1e119
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..aa7b3238
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..9a97bd26
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..a188f2fb
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..e95ba942
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..87bf8d36
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..c0f4d7f1
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..de371581
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..ac86165d
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..8b2adf6b
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..4398d0ac
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..7dc69341
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..884cd127
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..90fe333a
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..5da32c3b
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 00000000..b7d0119c
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 00000000..7a9fcbcb
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 00000000..3b052e57
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 00000000..96a86931
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 00000000..827d6342
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 00000000..09084757
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 00000000..a5a437f3
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 00000000..32cae246
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 00000000..8ea96f46
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 00000000..d81b5267
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..8043d4ca
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_clear_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 00000000..329aabe7
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..9603e76e
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..44c14232
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..80c06955
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..3966d6ad
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 00000000..017e45ed
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 00000000..ec0cff49
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 00000000..966938b9
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 00000000..d05f969e
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..451818ce
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..a216da17
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 00000000..3becd3ac
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_focused_holo.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_focused_holo.9.png
new file mode 100644
index 00000000..0678971d
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_focused_holo.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_longpressed_holo.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 00000000..91805025
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_longpressed_holo.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_dark.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 00000000..f7aa6755
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_light.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 00000000..f16bf97e
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 00000000..4a3adf3f
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 00000000..b2b9f278
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 00000000..91613e82
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_popup_background_mtrl_mult.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 00000000..4b6a6680
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..a354a15f
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 00000000..3417be30
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 00000000..d9b31862
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..be107a9b
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..23114059
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..b9ce196c
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..0cb1ce81
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml b/android/app/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml
new file mode 100644
index 00000000..40d02ee8
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml
@@ -0,0 +1,18 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml b/android/app/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml
new file mode 100644
index 00000000..63435d79
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml b/android/app/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml
new file mode 100644
index 00000000..425066d8
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml
@@ -0,0 +1,19 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 00000000..fdec4e7f
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 00000000..49025208
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 00000000..59a683ab
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 00000000..03bf49cc
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 00000000..342323b4
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 00000000..c0333f98
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 00000000..2f29c39c
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 00000000..365c467b
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 00000000..061990d8
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 00000000..a07ebea9
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..c465e82f
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 00000000..b504fa27
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..1015e1f4
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..b3fa6bc2
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..c8a6d258
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..3c5e683e
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 00000000..f87733af
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 00000000..9aabc43c
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 00000000..c039c8e0
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 00000000..b57ee193
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..76f26965
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..d0385ba4
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 00000000..3becd3ac
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_focused_holo.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_focused_holo.9.png
new file mode 100644
index 00000000..8965f3e5
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_focused_holo.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_longpressed_holo.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 00000000..d1bffd0d
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_longpressed_holo.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_dark.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 00000000..defab445
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_light.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 00000000..6a609c54
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 00000000..d4678b54
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 00000000..5b84092f
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 00000000..7fea0d6f
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 00000000..f4a52e93
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..4fbd9073
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 00000000..d3a8147f
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 00000000..c5a2319e
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..1b69efe9
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..fd13b790
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..96a58325
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..8053d167
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 00000000..e0411c02
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 00000000..accf80e4
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 00000000..8c82ec3d
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 00000000..8fc0a9b8
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 00000000..92b712e5
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 00000000..78bbeba1
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 00000000..c4ba8e64
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 00000000..2d201506
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 00000000..739e098a
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 00000000..b9c2101d
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..39178bf3
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 00000000..63cf5a32
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..65cf0c1e
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..d0416237
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..9dff893e
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..a1f8c333
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 00000000..28a3bbf2
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 00000000..29a4e529
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 00000000..162ab984
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 00000000..a1866ba4
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..d967ae70
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..5baef9ff
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 00000000..8065ce2d
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_focused_holo.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_focused_holo.9.png
new file mode 100644
index 00000000..195b9b4a
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_focused_holo.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_longpressed_holo.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 00000000..83e741b3
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_longpressed_holo.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 00000000..e8cf10a6
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_light.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 00000000..2fc23a0e
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 00000000..b643f2ff
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 00000000..ec173003
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 00000000..fdd5c71a
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 00000000..6d4ab340
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..84e2087d
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 00000000..f9dbd01c
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 00000000..39ee874e
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..e806d421
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..c72f1a24
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 00000000..8ee3d7cf
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 00000000..24a2d7b9
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 00000000..4dc870e4
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 00000000..4e18de21
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 00000000..5fa32665
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 00000000..c11cb2ec
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 00000000..893d3b54
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 00000000..b8c9cfa6
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 00000000..16b0f1d4
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 00000000..74439eeb
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 00000000..fe93d873
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 00000000..4b2d05ab
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 00000000..16e9e14d
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 00000000..129d30f8
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 00000000..fa6ab02b
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 00000000..77318c71
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..098c25a1
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 00000000..76c4eeb2
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 00000000..a3d4f8d3
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 00000000..3317c6e3
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 00000000..cbfcb0bc
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
new file mode 100644
index 00000000..58a33fc6
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
new file mode 100644
index 00000000..79bff6a3
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml
new file mode 100644
index 00000000..c61fa118
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
new file mode 100644
index 00000000..82557e0a
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
new file mode 100644
index 00000000..f479f89b
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
new file mode 100644
index 00000000..406d4c48
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
new file mode 100644
index 00000000..2f6f990d
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml
new file mode 100644
index 00000000..44e7b0eb
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml
new file mode 100644
index 00000000..4b77a003
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
new file mode 100644
index 00000000..f57d90ab
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
new file mode 100644
index 00000000..abfc1145
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
new file mode 100644
index 00000000..bc7298ca
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
new file mode 100644
index 00000000..cb40ddc9
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
new file mode 100644
index 00000000..75d91a4e
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
new file mode 100644
index 00000000..9db88d57
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
new file mode 100644
index 00000000..3d19c601
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml
new file mode 100644
index 00000000..1e9c5492
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
new file mode 100644
index 00000000..39e07b33
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
new file mode 100644
index 00000000..efb827c5
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
new file mode 100644
index 00000000..222452a9
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml
new file mode 100644
index 00000000..6f432b6a
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml b/android/app/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
new file mode 100644
index 00000000..f31c18b2
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
new file mode 100644
index 00000000..c2578b68
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
new file mode 100644
index 00000000..6bb35fb3
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
new file mode 100644
index 00000000..6217fc6f
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
new file mode 100644
index 00000000..3529867a
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
new file mode 100644
index 00000000..8dab475d
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
new file mode 100644
index 00000000..51733630
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
@@ -0,0 +1,26 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
new file mode 100644
index 00000000..60c6a633
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
@@ -0,0 +1,26 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
new file mode 100644
index 00000000..02e428a3
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
new file mode 100644
index 00000000..80f7c97e
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
new file mode 100644
index 00000000..7bc54672
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
new file mode 100644
index 00000000..456c20c1
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
new file mode 100644
index 00000000..371d2dfd
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
new file mode 100644
index 00000000..ad96f01a
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
new file mode 100644
index 00000000..73e5488e
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
new file mode 100644
index 00000000..3eb8cd66
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
new file mode 100644
index 00000000..cd334b17
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
new file mode 100644
index 00000000..8d456e29
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
new file mode 100644
index 00000000..d692b19d
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
new file mode 100644
index 00000000..212bbb4f
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
new file mode 100644
index 00000000..1aa46e67
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
new file mode 100644
index 00000000..9f4a3d23
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
new file mode 100644
index 00000000..e73fae9d
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_search_view.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_search_view.xml
new file mode 100644
index 00000000..6d24056c
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_search_view.xml
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml b/android/app/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
new file mode 100644
index 00000000..0af6acab
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/dev_loading_view.xml b/android/app/build/intermediates/res/merged/debug/layout/dev_loading_view.xml
new file mode 100644
index 00000000..c503c9c7
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/dev_loading_view.xml
@@ -0,0 +1,14 @@
+
+
+
diff --git a/android/app/build/intermediates/res/merged/debug/layout/fps_view.xml b/android/app/build/intermediates/res/merged/debug/layout/fps_view.xml
new file mode 100644
index 00000000..468caa9f
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/fps_view.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
diff --git a/android/app/build/intermediates/res/merged/debug/layout/notification_media_action.xml b/android/app/build/intermediates/res/merged/debug/layout/notification_media_action.xml
new file mode 100644
index 00000000..8241bda2
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/notification_media_action.xml
@@ -0,0 +1,25 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml b/android/app/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml
new file mode 100644
index 00000000..fc12dab8
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml
@@ -0,0 +1,28 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml b/android/app/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml
new file mode 100644
index 00000000..e9254d72
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml b/android/app/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml
new file mode 100644
index 00000000..e8cd8e3f
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/notification_template_lines.xml b/android/app/build/intermediates/res/merged/debug/layout/notification_template_lines.xml
new file mode 100644
index 00000000..9514bd86
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/notification_template_lines.xml
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/notification_template_media.xml b/android/app/build/intermediates/res/merged/debug/layout/notification_template_media.xml
new file mode 100644
index 00000000..ff66430c
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/notification_template_media.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml b/android/app/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
new file mode 100644
index 00000000..c908ea8a
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml b/android/app/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
new file mode 100644
index 00000000..7940789d
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml b/android/app/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml
new file mode 100644
index 00000000..ad23cbf4
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml
@@ -0,0 +1,26 @@
+
+
+
+
diff --git a/android/app/build/intermediates/res/merged/debug/layout/redbox_item_title.xml b/android/app/build/intermediates/res/merged/debug/layout/redbox_item_title.xml
new file mode 100644
index 00000000..8091fb4d
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/redbox_item_title.xml
@@ -0,0 +1,10 @@
+
diff --git a/android/app/build/intermediates/res/merged/debug/layout/redbox_view.xml b/android/app/build/intermediates/res/merged/debug/layout/redbox_view.xml
new file mode 100644
index 00000000..832ac4fb
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/redbox_view.xml
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/app/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml b/android/app/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
new file mode 100644
index 00000000..69dc43e7
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml b/android/app/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
new file mode 100644
index 00000000..790fe7ba
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml b/android/app/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
new file mode 100644
index 00000000..7b2e1958
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml b/android/app/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
new file mode 100644
index 00000000..e7759e60
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
@@ -0,0 +1,25 @@
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/mipmap-hdpi/ic_launcher.png b/android/app/build/intermediates/res/merged/debug/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 00000000..1dbefa9a
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/mipmap-hdpi/ic_launcher.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/mipmap-mdpi/ic_launcher.png b/android/app/build/intermediates/res/merged/debug/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 00000000..c8e29864
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/mipmap-mdpi/ic_launcher.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/mipmap-xhdpi/ic_launcher.png b/android/app/build/intermediates/res/merged/debug/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 00000000..c0cad09c
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/mipmap-xhdpi/ic_launcher.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/mipmap-xxhdpi/ic_launcher.png b/android/app/build/intermediates/res/merged/debug/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 00000000..82b54070
Binary files /dev/null and b/android/app/build/intermediates/res/merged/debug/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/android/app/build/intermediates/res/merged/debug/values-af/values-af.xml b/android/app/build/intermediates/res/merged/debug/values-af/values-af.xml
new file mode 100644
index 00000000..3f1db174
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-af/values-af.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigeer tuis"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeer op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "Soek …"
+ "Vee navraag uit"
+ "Soeknavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+ "Vou in"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-am/values-am.xml b/android/app/build/intermediates/res/merged/debug/values-am/values-am.xml
new file mode 100644
index 00000000..e0030c8f
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-am/values-am.xml
@@ -0,0 +1,21 @@
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "%1$s፣ %2$s"
+ "%1$s፣ %2$s፣ %3$s"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "ፈልግ…"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%s ጋር ያጋሩ"
+ "ሰብስብ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ar/values-ar.xml b/android/app/build/intermediates/res/merged/debug/values-ar/values-ar.xml
new file mode 100644
index 00000000..f58dbd95
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ar/values-ar.xml
@@ -0,0 +1,21 @@
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "بحث…"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+ "تصغير"
+ "+999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml b/android/app/build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml
new file mode 100644
index 00000000..0f057600
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml
@@ -0,0 +1,20 @@
+
+
+ "Evə get"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuxarı get"
+ "Daha çox seçim"
+ "Hazırdır"
+ "Hamısına baxın"
+ "Tətbiq seçin"
+ "Axtarış..."
+ "Sorğunu təmizlə"
+ "Axtarış sorğusu"
+ "Axtarış"
+ "Sorğunu göndərin"
+ "Səsli axtarış"
+ "Bununla paylaşın"
+ "Dağıt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-bg/values-bg.xml b/android/app/build/intermediates/res/merged/debug/values-bg/values-bg.xml
new file mode 100644
index 00000000..8a0c696b
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-bg/values-bg.xml
@@ -0,0 +1,21 @@
+
+
+ "Придвижване към „Начало“"
+ "„%1$s“ – %2$s"
+ "„%1$s“, „%2$s“ – %3$s"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "Търсете…"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %s"
+ "Свиване"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml b/android/app/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml
new file mode 100644
index 00000000..3372f0ea
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml
@@ -0,0 +1,21 @@
+
+
+ "হোম এ নেভিগেট করুন"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরো বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান চয়ন করুন"
+ "অনুসন্ধান..."
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী অনুসন্ধান করুন"
+ "অনুসন্ধান করুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে ভাগ করুন"
+ "%s এর সাথে ভাগ করুন"
+ "সঙ্কুচিত করুন"
+ "৯৯৯+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ca/values-ca.xml b/android/app/build/intermediates/res/merged/debug/values-ca/values-ca.xml
new file mode 100644
index 00000000..10f5444f
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ca/values-ca.xml
@@ -0,0 +1,21 @@
+
+
+ "Navega a la pàgina d\'inici"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navega cap a dalt"
+ "Més opcions"
+ "Fet"
+ "Mostra\'ls tots"
+ "Selecciona una aplicació"
+ "Cerca..."
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+ "Replega"
+ "+999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-cs/values-cs.xml b/android/app/build/intermediates/res/merged/debug/values-cs/values-cs.xml
new file mode 100644
index 00000000..188f33e5
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-cs/values-cs.xml
@@ -0,0 +1,21 @@
+
+
+ "Přejít na plochu"
+ "%1$s – %2$s"
+ "%1$s, %2$s – %3$s"
+ "Přejít nahoru"
+ "Více možností"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "Vyhledat…"
+ "Smazat dotaz"
+ "Vyhledávací dotaz"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávání"
+ "Sdílet pomocí"
+ "Sdílet pomocí %s"
+ "Sbalit"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-da/values-da.xml b/android/app/build/intermediates/res/merged/debug/values-da/values-da.xml
new file mode 100644
index 00000000..96719cab
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-da/values-da.xml
@@ -0,0 +1,21 @@
+
+
+ "Naviger hjem"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Naviger op"
+ "Flere muligheder"
+ "Luk"
+ "Se alle"
+ "Vælg en app"
+ "Søg…"
+ "Ryd forespørgslen"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgslen"
+ "Talesøgning"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-de/values-de.xml b/android/app/build/intermediates/res/merged/debug/values-de/values-de.xml
new file mode 100644
index 00000000..08abe190
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-de/values-de.xml
@@ -0,0 +1,21 @@
+
+
+ "Zur Startseite"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle ansehen"
+ "App auswählen"
+ "Suchen…"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suchen"
+ "Suchanfrage senden"
+ "Sprachsuche"
+ "Freigeben für"
+ "Freigeben für %s"
+ "Minimieren"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-el/values-el.xml b/android/app/build/intermediates/res/merged/debug/values-el/values-el.xml
new file mode 100644
index 00000000..3a495e19
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-el/values-el.xml
@@ -0,0 +1,21 @@
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "Αναζήτηση…"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %s"
+ "Σύμπτυξη"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml b/android/app/build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml
new file mode 100644
index 00000000..2089716f
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml b/android/app/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 00000000..2089716f
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml b/android/app/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 00000000..2089716f
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigate home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml b/android/app/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 00000000..22c5c281
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,21 @@
+
+
+ "Navegar a la página principal"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Elige una aplicación."
+ "Buscar…"
+ "Eliminar la consulta"
+ "Consulta de búsqueda"
+ "Búsqueda"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-es/values-es.xml b/android/app/build/intermediates/res/merged/debug/values-es/values-es.xml
new file mode 100644
index 00000000..9b481e83
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-es/values-es.xml
@@ -0,0 +1,21 @@
+
+
+ "Ir a la pantalla de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ "+999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml b/android/app/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml
new file mode 100644
index 00000000..0d792579
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigeerimine avaekraanile"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigeerimine üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "Otsige …"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jagamine:"
+ "Jagamine kasutajaga %s"
+ "Ahendamine"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml b/android/app/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml
new file mode 100644
index 00000000..96741c02
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml
@@ -0,0 +1,21 @@
+
+
+ "Joan orri nagusira"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "Bilatu…"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahots bidezko bilaketa"
+ "Partekatu hauekin"
+ "Partekatu %s erabiltzailearekin"
+ "Tolestu"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-fa/values-fa.xml b/android/app/build/intermediates/res/merged/debug/values-fa/values-fa.xml
new file mode 100644
index 00000000..ca13cadd
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-fa/values-fa.xml
@@ -0,0 +1,21 @@
+
+
+ "پیمایش به صفحه اصلی"
+ "%1$s، %2$s"
+ "%1$s، %2$s، %3$s"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "انجام شد"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "جستجو…"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی شفاهی"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %s"
+ "کوچک کردن"
+ "۹۹۹+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-fi/values-fi.xml b/android/app/build/intermediates/res/merged/debug/values-fi/values-fi.xml
new file mode 100644
index 00000000..532fb457
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-fi/values-fi.xml
@@ -0,0 +1,21 @@
+
+
+ "Siirry etusivulle"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Siirry ylös"
+ "Lisää"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "Haku…"
+ "Tyhjennä kysely"
+ "Hakulauseke"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jakaminen:"
+ "Jakaminen: %s"
+ "Kutista"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml b/android/app/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 00000000..7339848d
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,21 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "Terminé"
+ "Voir toutes les chaînes"
+ "Sélectionnez une application"
+ "Recherche en cours..."
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager"
+ "Partager avec %s"
+ "Réduire"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-fr/values-fr.xml b/android/app/build/intermediates/res/merged/debug/values-fr/values-fr.xml
new file mode 100644
index 00000000..0cbcc535
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-fr/values-fr.xml
@@ -0,0 +1,21 @@
+
+
+ "Revenir à l\'accueil"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "Rechercher…"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+ "Réduire"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml b/android/app/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml
new file mode 100644
index 00000000..184bf5a5
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml
@@ -0,0 +1,21 @@
+
+
+ "Ir á páxina de inicio"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Desprazarse cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todas"
+ "Escoller unha aplicación"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta de busca"
+ "Buscar"
+ "Enviar consulta"
+ "Busca de voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml b/android/app/build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml
new file mode 100644
index 00000000..f2b2ad83
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "હોમ પર નેવિગેટ કરો"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ઉપર નેવિગેટ કરો"
+ "વધુ વિકલ્પો"
+ "થઈ ગયું"
+ "બધું જુઓ"
+ "એક એપ્લિકેશન પસંદ કરો"
+ "શોધો…"
+ "ક્વેરી સાફ કરો"
+ "શોધ ક્વેરી"
+ "શોધો"
+ "ક્વેરી સબમિટ કરો"
+ "વૉઇસ શોધ"
+ "આની સાથે શેર કરો"
+ "%s સાથે શેર કરો"
+ "સંકુચિત કરો"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-h720dp-v13/values-h720dp-v13.xml b/android/app/build/intermediates/res/merged/debug/values-h720dp-v13/values-h720dp-v13.xml
new file mode 100644
index 00000000..e38bb90b
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-h720dp-v13/values-h720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-hdpi-v4/values-hdpi-v4.xml b/android/app/build/intermediates/res/merged/debug/values-hdpi-v4/values-hdpi-v4.xml
new file mode 100644
index 00000000..d5a138ef
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-hdpi-v4/values-hdpi-v4.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-hi/values-hi.xml b/android/app/build/intermediates/res/merged/debug/values-hi/values-hi.xml
new file mode 100644
index 00000000..002edc72
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-hi/values-hi.xml
@@ -0,0 +1,21 @@
+
+
+ "मुख्यपृष्ठ पर नेविगेट करें"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ऊपर नेविगेट करें"
+ "अधिक विकल्प"
+ "पूर्ण"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "खोजा जा रहा है…"
+ "क्वेरी साफ़ करें"
+ "खोज क्वेरी"
+ "खोजें"
+ "क्वेरी सबमिट करें"
+ "ध्वनि खोज"
+ "इसके द्वारा साझा करें"
+ "%s के साथ साझा करें"
+ "संक्षिप्त करें"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-hr/values-hr.xml b/android/app/build/intermediates/res/merged/debug/values-hr/values-hr.xml
new file mode 100644
index 00000000..41887943
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-hr/values-hr.xml
@@ -0,0 +1,21 @@
+
+
+ "Idi na početnu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Idi gore"
+ "Dodatne opcije"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "Pretražite…"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraživanje"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeljenje sa"
+ "Dijeljenje sa: %s"
+ "Sažmi"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-hu/values-hu.xml b/android/app/build/intermediates/res/merged/debug/values-hu/values-hu.xml
new file mode 100644
index 00000000..509e0acf
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-hu/values-hu.xml
@@ -0,0 +1,21 @@
+
+
+ "Ugrás a főoldalra"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Felfelé mozgatás"
+ "További lehetőségek"
+ "Kész"
+ "Összes megtekintése"
+ "Válasszon ki egy alkalmazást"
+ "Keresés…"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következővel: %s"
+ "Összecsukás"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml b/android/app/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml
new file mode 100644
index 00000000..756d2d98
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml
@@ -0,0 +1,21 @@
+
+
+ "Ուղղվել տուն"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Կատարված է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "Որոնում..."
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Տարածել"
+ "Տարածել ըստ %s"
+ "Թաքցնել"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-in/values-in.xml b/android/app/build/intermediates/res/merged/debug/values-in/values-in.xml
new file mode 100644
index 00000000..853a2a70
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-in/values-in.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigasi ke beranda"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi naik"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "Telusuri..."
+ "Hapus kueri"
+ "Kueri penelusuran"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan dengan %s"
+ "Ciutkan"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml b/android/app/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml
new file mode 100644
index 00000000..92bd5451
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml
@@ -0,0 +1,21 @@
+
+
+ "Fara heim"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "Leita…"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leita"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+ "Minnka"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-it/values-it.xml b/android/app/build/intermediates/res/merged/debug/values-it/values-it.xml
new file mode 100644
index 00000000..e5db43bf
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-it/values-it.xml
@@ -0,0 +1,21 @@
+
+
+ "Vai alla home page"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Vai in alto"
+ "Altre opzioni"
+ "Fine"
+ "Visualizza tutte"
+ "Scegli un\'applicazione"
+ "Cerca…"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi con %s"
+ "Comprimi"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-iw/values-iw.xml b/android/app/build/intermediates/res/merged/debug/values-iw/values-iw.xml
new file mode 100644
index 00000000..2bea3b68
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-iw/values-iw.xml
@@ -0,0 +1,21 @@
+
+
+ "נווט לדף הבית"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכל"
+ "בחר אפליקציה"
+ "חפש…"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חפש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %s"
+ "כווץ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ja/values-ja.xml b/android/app/build/intermediates/res/merged/debug/values-ja/values-ja.xml
new file mode 100644
index 00000000..eeed6244
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ja/values-ja.xml
@@ -0,0 +1,21 @@
+
+
+ "ホームへ移動"
+ "%1$s、%2$s"
+ "%1$s、%2$s、%3$s"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "検索…"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%sと共有"
+ "折りたたむ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml b/android/app/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml
new file mode 100644
index 00000000..7a4648c0
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml
@@ -0,0 +1,21 @@
+
+
+ "მთავარზე ნავიგაცია"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "ძიება..."
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "%s-თან გაზიარება"
+ "აკეცვა"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml b/android/app/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml
new file mode 100644
index 00000000..bd1bfb9d
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml
@@ -0,0 +1,21 @@
+
+
+ "Негізгі бетте қозғалу"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Дайын"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "Іздеу…"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%s бөлісу"
+ "Тасалау"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml b/android/app/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml
new file mode 100644
index 00000000..6f77ffe7
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml
@@ -0,0 +1,21 @@
+
+
+ "រកមើលទៅដើម"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "ស្វែងរក…"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %s"
+ "បង្រួម"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml b/android/app/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml
new file mode 100644
index 00000000..11bfa3f0
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಹುಡುಕಿ…"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "ಸಂಕುಚಿಸು"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ko/values-ko.xml b/android/app/build/intermediates/res/merged/debug/values-ko/values-ko.xml
new file mode 100644
index 00000000..9c490e83
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ko/values-ko.xml
@@ -0,0 +1,21 @@
+
+
+ "홈 탐색"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "검색..."
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%s와(과) 공유"
+ "접기"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml b/android/app/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml
new file mode 100644
index 00000000..f123735f
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml
@@ -0,0 +1,21 @@
+
+
+ "Үйгө багыттоо"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "Издөө…"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%s аркылуу бөлүшүү"
+ "Жыйнап коюу"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-land/values-land.xml b/android/app/build/intermediates/res/merged/debug/values-land/values-land.xml
new file mode 100644
index 00000000..c0686a4e
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-land/values-land.xml
@@ -0,0 +1,9 @@
+
+
+ true
+ true
+ 48dp
+ 32dp
+ 12dp
+ 14dp
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-large-v4/values-large-v4.xml b/android/app/build/intermediates/res/merged/debug/values-large-v4/values-large-v4.xml
new file mode 100644
index 00000000..55aba508
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-large-v4/values-large-v4.xml
@@ -0,0 +1,14 @@
+
+
+ true
+ true
+ 440dp
+ 192dip
+ - 60%
+ - 90%
+ - 60%
+ - 90%
+ 4
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml b/android/app/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml
new file mode 100644
index 00000000..65dd8db1
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml
@@ -0,0 +1,21 @@
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ຊອກຫາ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນກັບ %s"
+ "ຫຍໍ້"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-lt/values-lt.xml b/android/app/build/intermediates/res/merged/debug/values-lt/values-lt.xml
new file mode 100644
index 00000000..546521db
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-lt/values-lt.xml
@@ -0,0 +1,21 @@
+
+
+ "Eiti į pagrindinį puslapį"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "Ieškoti..."
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant „%s“"
+ "Sutraukti"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-lv/values-lv.xml b/android/app/build/intermediates/res/merged/debug/values-lv/values-lv.xml
new file mode 100644
index 00000000..f2cfb7a9
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-lv/values-lv.xml
@@ -0,0 +1,21 @@
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "%1$s: %2$s"
+ "%1$s, %2$s: %3$s"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "Meklējiet…"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar %s"
+ "Sakļaut"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml b/android/app/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml
new file mode 100644
index 00000000..1a3bb6db
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml
@@ -0,0 +1,19 @@
+
+
+ "Движи се кон дома"
+ "%1$s, %2$s, %3$s"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "Пребарување…"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+ "Собери"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml b/android/app/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml
new file mode 100644
index 00000000..db4e23aa
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതല് ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "തിരയുക…"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "ശബ്ദ തിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s എന്നതുമായി പങ്കിടുക"
+ "ചുരുക്കുക"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml b/android/app/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml
new file mode 100644
index 00000000..a7cbf624
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml
@@ -0,0 +1,21 @@
+
+
+ "Нүүр хуудас руу шилжих"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "Хайх..."
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+ "Хумих"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml b/android/app/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml
new file mode 100644
index 00000000..1f9d1fc1
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "मुख्यपृष्ठ नेव्हिगेट करा"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "शोधा…"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह सामायिक करा"
+ "%s सह सामायिक करा"
+ "संक्षिप्त करा"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml b/android/app/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml
new file mode 100644
index 00000000..0c2183ae
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigasi skrin utama"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "Cari…"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+ "Runtuhkan"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml b/android/app/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml
new file mode 100644
index 00000000..bd82251d
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml
@@ -0,0 +1,21 @@
+
+
+ "မူလနေရာကို သွားရန်"
+ "%1$s၊ %2$s"
+ "%1$s ၊ %2$s ၊ %3$s"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ရှာဖွေပါ..."
+ "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ကို မျှဝေပါရန်"
+ "ခေါက်ရန်"
+ "၉၉၉+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-nb/values-nb.xml b/android/app/build/intermediates/res/merged/debug/values-nb/values-nb.xml
new file mode 100644
index 00000000..00f40b64
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-nb/values-nb.xml
@@ -0,0 +1,21 @@
+
+
+ "Gå til startsiden"
+ "%1$s – %2$s"
+ "%1$s – %2$s – %3$s"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "Søk …"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml b/android/app/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml
new file mode 100644
index 00000000..283912a0
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml
@@ -0,0 +1,21 @@
+
+
+ "गृह खोज्नुहोस्"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "खोज्नुहोस्..."
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग साझेदारी गर्नुहोस्"
+ "संक्षिप्त पार्नुहोस्"
+ "९९९+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-nl/values-nl.xml b/android/app/build/intermediates/res/merged/debug/values-nl/values-nl.xml
new file mode 100644
index 00000000..ac2794fa
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-nl/values-nl.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigeren naar startpositie"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Gereed"
+ "Alles weergeven"
+ "Een app selecteren"
+ "Zoeken…"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+ "Samenvouwen"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml b/android/app/build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml
new file mode 100644
index 00000000..8e0bf18c
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"
+ "ਹੋਰ ਚੋਣਾਂ"
+ "ਹੋ ਗਿਆ"
+ "ਸਭ ਦੇਖੋ"
+ "ਇੱਕ ਐਪ ਚੁਣੋ"
+ "ਖੋਜ…"
+ "ਸਵਾਲ ਹਟਾਓ"
+ "ਸਵਾਲ ਖੋਜੋ"
+ "ਖੋਜੋ"
+ "ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"
+ "ਵੌਇਸ ਖੋਜ"
+ "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
+ "ਨਸ਼ਟ ਕਰੋ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-pl/values-pl.xml b/android/app/build/intermediates/res/merged/debug/values-pl/values-pl.xml
new file mode 100644
index 00000000..f5ee5445
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-pl/values-pl.xml
@@ -0,0 +1,21 @@
+
+
+ "Przejdź do strony głównej"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Zobacz wszystkie"
+ "Wybierz aplikację"
+ "Szukaj…"
+ "Wyczyść zapytanie"
+ "Wyszukiwane hasło"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij dla"
+ "Udostępnij dla %s"
+ "Zwiń"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-port/values-port.xml b/android/app/build/intermediates/res/merged/debug/values-port/values-port.xml
new file mode 100644
index 00000000..7a925dc7
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-port/values-port.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml b/android/app/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 00000000..b0a0ca7a
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,21 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Escolher uma aplicação"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com %s"
+ "Reduzir"
+ "+999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-pt/values-pt.xml b/android/app/build/intermediates/res/merged/debug/values-pt/values-pt.xml
new file mode 100644
index 00000000..40b36d38
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-pt/values-pt.xml
@@ -0,0 +1,21 @@
+
+
+ "Navegar para a página inicial"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um app"
+ "Pesquisar..."
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ro/values-ro.xml b/android/app/build/intermediates/res/merged/debug/values-ro/values-ro.xml
new file mode 100644
index 00000000..de472fdf
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ro/values-ro.xml
@@ -0,0 +1,21 @@
+
+
+ "Navigați la ecranul de pornire"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Terminat"
+ "Afișați-le pe toate"
+ "Alegeți o aplicație"
+ "Căutați…"
+ "Ștergeți interogarea"
+ "Interogare de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți la %s"
+ "Restrângeți"
+ "˃999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ru/values-ru.xml b/android/app/build/intermediates/res/merged/debug/values-ru/values-ru.xml
new file mode 100644
index 00000000..7deb7bc8
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ru/values-ru.xml
@@ -0,0 +1,21 @@
+
+
+ "Перейти на главный экран"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "Поиск"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ пользователю %s"
+ "Свернуть"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml b/android/app/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml
new file mode 100644
index 00000000..86ce6c9b
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml
@@ -0,0 +1,21 @@
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "සොයන්න..."
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%s සමඟ බෙදාගන්න"
+ "හකුළන්න"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-sk/values-sk.xml b/android/app/build/intermediates/res/merged/debug/values-sk/values-sk.xml
new file mode 100644
index 00000000..8599320c
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-sk/values-sk.xml
@@ -0,0 +1,21 @@
+
+
+ "Prejsť na plochu"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Prejsť hore"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetko"
+ "Zvoľte aplikáciu"
+ "Vyhľadať…"
+ "Vymazať dopyt"
+ "Vyhľadávací dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať pomocou"
+ "Zdieľať pomocou %s"
+ "Zbaliť"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-sl/values-sl.xml b/android/app/build/intermediates/res/merged/debug/values-sl/values-sl.xml
new file mode 100644
index 00000000..01777986
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-sl/values-sl.xml
@@ -0,0 +1,21 @@
+
+
+ "Krmarjenje domov"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Krmarjenje navzgor"
+ "Več možnosti"
+ "Končano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "Iskanje …"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z"
+ "Deljenje z:"
+ "Strni"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml b/android/app/build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml
new file mode 100644
index 00000000..3ac94391
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml
@@ -0,0 +1,21 @@
+
+
+ "Orientohu për në shtëpi"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Ngjitu lart"
+ "Opsione të tjera"
+ "U krye!"
+ "Shikoji të gjitha"
+ "Zgjidh një aplikacion"
+ "Kërko..."
+ "Pastro pyetjen"
+ "Kërko pyetjen"
+ "Kërko"
+ "Dërgo pyetjen"
+ "Kërkim me zë"
+ "Shpërnda publikisht me"
+ "Shpërnda publikisht me %s"
+ "Shpalos"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-sr/values-sr.xml b/android/app/build/intermediates/res/merged/debug/values-sr/values-sr.xml
new file mode 100644
index 00000000..0b199be0
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-sr/values-sr.xml
@@ -0,0 +1,21 @@
+
+
+ "Одлазак на Почетну"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "Претражите..."
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дели са апликацијом %s"
+ "Скупи"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-sv/values-sv.xml b/android/app/build/intermediates/res/merged/debug/values-sv/values-sv.xml
new file mode 100644
index 00000000..11be8d68
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-sv/values-sv.xml
@@ -0,0 +1,21 @@
+
+
+ "Visa startsidan"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klart"
+ "Visa alla"
+ "Välj en app"
+ "Sök …"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+ "Komprimera"
+ ">999"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-sw/values-sw.xml b/android/app/build/intermediates/res/merged/debug/values-sw/values-sw.xml
new file mode 100644
index 00000000..3ff8de5c
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-sw/values-sw.xml
@@ -0,0 +1,21 @@
+
+
+ "Nenda mwanzo"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Nenda juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "Tafuta…"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Tafuta kwa kutamka"
+ "Shiriki na:"
+ "Shiriki na %s"
+ "Kunja"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-sw600dp-v13/values-sw600dp-v13.xml b/android/app/build/intermediates/res/merged/debug/values-sw600dp-v13/values-sw600dp-v13.xml
new file mode 100644
index 00000000..c7770591
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-sw600dp-v13/values-sw600dp-v13.xml
@@ -0,0 +1,11 @@
+
+
+ 24dp
+ 64dp
+ 8dp
+ 8dp
+ 580dp
+ 16dp
+ 20dp
+ 5
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml b/android/app/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml
new file mode 100644
index 00000000..c26f9483
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "மேலே வழிசெலுத்து"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "தேடு..."
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%s உடன் பகிர்"
+ "சுருக்கு"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml b/android/app/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml
new file mode 100644
index 00000000..9fa86ae6
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml
@@ -0,0 +1,21 @@
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "శోధించు..."
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "శోధించు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%sతో భాగస్వామ్యం చేయి"
+ "కుదించండి"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-th/values-th.xml b/android/app/build/intermediates/res/merged/debug/values-th/values-th.xml
new file mode 100644
index 00000000..0a27e57e
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-th/values-th.xml
@@ -0,0 +1,21 @@
+
+
+ "นำทางไปหน้าแรก"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ค้นหา…"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์กับ %s"
+ "ยุบ"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-tl/values-tl.xml b/android/app/build/intermediates/res/merged/debug/values-tl/values-tl.xml
new file mode 100644
index 00000000..0a131ba5
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-tl/values-tl.xml
@@ -0,0 +1,21 @@
+
+
+ "Mag-navigate patungo sa home"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Mag-navigate pataas"
+ "Higit pang mga opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng isang app"
+ "Maghanap…"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi sa/kay %s"
+ "I-collapse"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-tr/values-tr.xml b/android/app/build/intermediates/res/merged/debug/values-tr/values-tr.xml
new file mode 100644
index 00000000..c08c28c2
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-tr/values-tr.xml
@@ -0,0 +1,21 @@
+
+
+ "Ana ekrana git"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Tamamlandı"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "Ara…"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Şununla paylaş"
+ "%s ile paylaş"
+ "Daralt"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-uk/values-uk.xml b/android/app/build/intermediates/res/merged/debug/values-uk/values-uk.xml
new file mode 100644
index 00000000..9cd11778
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-uk/values-uk.xml
@@ -0,0 +1,21 @@
+
+
+ "Перейти на головний"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "Пошук…"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Надіслати через %s"
+ "Згорнути"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml b/android/app/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml
new file mode 100644
index 00000000..a1a3b872
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml
@@ -0,0 +1,21 @@
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "تلاش کریں…"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%s کے ساتھ اشتراک کریں"
+ "سکیڑیں"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml b/android/app/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml
new file mode 100644
index 00000000..50308605
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml
@@ -0,0 +1,20 @@
+
+
+ "Boshiga o‘tish"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Yuqoriga o‘tish"
+ "Qo‘shimcha sozlamalar"
+ "Tayyor"
+ "Barchasini ko‘rish"
+ "Dastur tanlang"
+ "Qidirish…"
+ "So‘rovni tozalash"
+ "So‘rovni izlash"
+ "Izlash"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Bo‘lishish:"
+ "Yig‘ish"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-v11/values-v11.xml b/android/app/build/intermediates/res/merged/debug/values-v11/values-v11.xml
new file mode 100644
index 00000000..d074ce99
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-v11/values-v11.xml
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-v12/values-v12.xml b/android/app/build/intermediates/res/merged/debug/values-v12/values-v12.xml
new file mode 100644
index 00000000..85e24166
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-v12/values-v12.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-v14/values-v14.xml b/android/app/build/intermediates/res/merged/debug/values-v14/values-v14.xml
new file mode 100644
index 00000000..7239a2c8
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-v14/values-v14.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-v17/values-v17.xml b/android/app/build/intermediates/res/merged/debug/values-v17/values-v17.xml
new file mode 100644
index 00000000..f41a414c
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-v17/values-v17.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-v18/values-v18.xml b/android/app/build/intermediates/res/merged/debug/values-v18/values-v18.xml
new file mode 100644
index 00000000..7dad77f9
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-v18/values-v18.xml
@@ -0,0 +1,4 @@
+
+
+ 0px
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-v21/values-v21.xml b/android/app/build/intermediates/res/merged/debug/values-v21/values-v21.xml
new file mode 100644
index 00000000..0a96e232
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-v21/values-v21.xml
@@ -0,0 +1,242 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-v22/values-v22.xml b/android/app/build/intermediates/res/merged/debug/values-v22/values-v22.xml
new file mode 100644
index 00000000..2b074702
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-v22/values-v22.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-v23/values-v23.xml b/android/app/build/intermediates/res/merged/debug/values-v23/values-v23.xml
new file mode 100644
index 00000000..5a45578f
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-v23/values-v23.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-vi/values-vi.xml b/android/app/build/intermediates/res/merged/debug/values-vi/values-vi.xml
new file mode 100644
index 00000000..373754fe
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-vi/values-vi.xml
@@ -0,0 +1,21 @@
+
+
+ "Điều hướng về trang chủ"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Điều hướng lên trên"
+ "Thêm tùy chọn"
+ "Xong"
+ "Xem tất cả"
+ "Chọn một ứng dụng"
+ "Tìm kiếm…"
+ "Xóa truy vấn"
+ "Tìm kiếm truy vấn"
+ "Tìm kiếm"
+ "Gửi truy vấn"
+ "Tìm kiếm bằng giọng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+ "Thu gọn"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-w360dp-v13/values-w360dp-v13.xml b/android/app/build/intermediates/res/merged/debug/values-w360dp-v13/values-w360dp-v13.xml
new file mode 100644
index 00000000..fd9dac9b
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-w360dp-v13/values-w360dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 3
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-w480dp-v13/values-w480dp-v13.xml b/android/app/build/intermediates/res/merged/debug/values-w480dp-v13/values-w480dp-v13.xml
new file mode 100644
index 00000000..5b7dcf65
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-w480dp-v13/values-w480dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ true
+ true
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-w500dp-v13/values-w500dp-v13.xml b/android/app/build/intermediates/res/merged/debug/values-w500dp-v13/values-w500dp-v13.xml
new file mode 100644
index 00000000..dcd19ee3
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-w500dp-v13/values-w500dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 4
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-w600dp-v13/values-w600dp-v13.xml b/android/app/build/intermediates/res/merged/debug/values-w600dp-v13/values-w600dp-v13.xml
new file mode 100644
index 00000000..4c058c26
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-w600dp-v13/values-w600dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-w720dp-v13/values-w720dp-v13.xml b/android/app/build/intermediates/res/merged/debug/values-w720dp-v13/values-w720dp-v13.xml
new file mode 100644
index 00000000..966aafb2
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-w720dp-v13/values-w720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-xlarge-land-v4/values-xlarge-land-v4.xml b/android/app/build/intermediates/res/merged/debug/values-xlarge-land-v4/values-xlarge-land-v4.xml
new file mode 100644
index 00000000..98b3f8c2
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-xlarge-land-v4/values-xlarge-land-v4.xml
@@ -0,0 +1,4 @@
+
+
+ 256dip
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-xlarge-v4/values-xlarge-v4.xml b/android/app/build/intermediates/res/merged/debug/values-xlarge-v4/values-xlarge-v4.xml
new file mode 100644
index 00000000..ba8d9dae
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-xlarge-v4/values-xlarge-v4.xml
@@ -0,0 +1,10 @@
+
+
+ false
+ 192dip
+ - 60%
+ - 90%
+ - 50%
+ - 70%
+ 5
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml b/android/app/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 00000000..7f4dcc82
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,21 @@
+
+
+ "转到主屏幕"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "转到上一层级"
+ "更多选项"
+ "完成"
+ "查看全部"
+ "选择应用"
+ "搜索…"
+ "清除查询"
+ "搜索查询"
+ "搜索"
+ "提交查询"
+ "语音搜索"
+ "分享方式"
+ "通过%s分享"
+ "收起"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml b/android/app/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 00000000..ce8cf117
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,21 @@
+
+
+ "瀏覽主頁"
+ "%1$s:%2$s"
+ "%1$s (%2$s):%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "與「%s」分享"
+ "收合"
+ "999 +"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml b/android/app/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 00000000..eda92911
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,21 @@
+
+
+ "瀏覽首頁"
+ "%1$s:%2$s"
+ "%1$s - %2$s:%3$s"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "查看全部"
+ "選擇應用程式"
+ "搜尋…"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "選擇分享對象"
+ "與「%s」分享"
+ "收合"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values-zu/values-zu.xml b/android/app/build/intermediates/res/merged/debug/values-zu/values-zu.xml
new file mode 100644
index 00000000..10addc51
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values-zu/values-zu.xml
@@ -0,0 +1,21 @@
+
+
+ "Zulazulela ekhaya"
+ "%1$s, %2$s"
+ "%1$s, %2$s, %3$s"
+ "Zulazulela phezulu"
+ "Izinketho eziningi"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha uhlelo lokusebenza"
+ "Iyasesha..."
+ "Sula inkinga"
+ "Umbuzo wosesho"
+ "Sesha"
+ "Hambisa umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no-"
+ "Yabelana no-%s"
+ "Goqa"
+ "999+"
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/values/values.xml b/android/app/build/intermediates/res/merged/debug/values/values.xml
new file mode 100644
index 00000000..734257d7
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/values/values.xml
@@ -0,0 +1,1607 @@
+
+
+
+
+
+
+ true
+ false
+ true
+ true
+ false
+ true
+ false
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ @color/material_grey_800
+ @android:color/white
+ @color/material_grey_850
+ @color/material_grey_50
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #eecc0000
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ @android:color/white
+ @android:color/black
+ #6680cbc4
+ #66009688
+ @color/bright_foreground_disabled_material_dark
+ @color/bright_foreground_disabled_material_light
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #fff5f5f5
+ #ffe0e0e0
+ #fffafafa
+ #ff757575
+ #ff424242
+ #ff303030
+ #ff212121
+ @android:color/black
+ @color/material_grey_600
+ @color/material_grey_900
+ @color/material_grey_100
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #42ffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 16dp
+ 56dp
+ 0dp
+ 0dp
+ 16dp
+ 10dp
+ 6dp
+ 40dp
+ 48dp
+ 180dp
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+ 320dp
+ 2dp
+ 4dp
+ 4dp
+ 8dp
+ - 65%
+ - 95%
+ 24dp
+ 18dp
+ - 0.30
+ - 0.26
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+ 296dp
+ 320dip
+ 160dip
+ 3dp
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+ - 80%
+ - 100%
+ - 320dp
+ - 320dp
+ - 0.30
+ - 0.26
+ - 0.26
+ - 0.20
+ - 0.12
+ 64dp
+ 64dp
+ 12dp
+ #3333B5E5
+
+
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+ 2
+ 127
+ 999
+ Navigate home
+ %1$s, %2$s
+ %1$s, %2$s, %3$s
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ RnTest
+ Copy
+ Debug JS Remotely
+ Debug JS in Nuclide
+ The request to attach Nuclide could not reach Metro Bundler!
+ Stop Remote JS Debugging
+ Dismiss\n(ESC)
+ Toggle Inspector
+ Capture Heap
+ Enable Hot Reloading
+ Disable Hot Reloading
+ Unable to download JS bundle. Did you forget to start the development server or connect your device?
+ Enable Live Reload
+ Disable Live Reload
+ Loading from %1$s…
+ Show Perf Monitor
+ Hide Perf Monitor
+ Start/Stop Sampling Profiler
+ Reload\n(R,\u00A0R)
+ Reload
+ Unable to connect with remote debugger
+ Connecting to remote debugger
+ Report
+ Dev Settings
+ Catalyst Dev Settings
+ 999+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/build/intermediates/res/merged/debug/xml/preferences.xml b/android/app/build/intermediates/res/merged/debug/xml/preferences.xml
new file mode 100644
index 00000000..7ce20de3
--- /dev/null
+++ b/android/app/build/intermediates/res/merged/debug/xml/preferences.xml
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/app/build/intermediates/res/resources-debug.ap_ b/android/app/build/intermediates/res/resources-debug.ap_
new file mode 100644
index 00000000..b86f6c79
Binary files /dev/null and b/android/app/build/intermediates/res/resources-debug.ap_ differ
diff --git a/android/app/build/intermediates/symbols/debug/R.txt b/android/app/build/intermediates/symbols/debug/R.txt
new file mode 100644
index 00000000..23e629cc
--- /dev/null
+++ b/android/app/build/intermediates/symbols/debug/R.txt
@@ -0,0 +1,1342 @@
+int anim abc_fade_in 0x7f050000
+int anim abc_fade_out 0x7f050001
+int anim abc_grow_fade_in_from_bottom 0x7f050002
+int anim abc_popup_enter 0x7f050003
+int anim abc_popup_exit 0x7f050004
+int anim abc_shrink_fade_out_from_bottom 0x7f050005
+int anim abc_slide_in_bottom 0x7f050006
+int anim abc_slide_in_top 0x7f050007
+int anim abc_slide_out_bottom 0x7f050008
+int anim abc_slide_out_top 0x7f050009
+int anim catalyst_fade_in 0x7f05000a
+int anim catalyst_fade_out 0x7f05000b
+int anim catalyst_push_up_in 0x7f05000c
+int anim catalyst_push_up_out 0x7f05000d
+int anim catalyst_slide_down 0x7f05000e
+int anim catalyst_slide_up 0x7f05000f
+int attr actionBarDivider 0x7f01007d
+int attr actionBarItemBackground 0x7f01007e
+int attr actionBarPopupTheme 0x7f010077
+int attr actionBarSize 0x7f01007c
+int attr actionBarSplitStyle 0x7f010079
+int attr actionBarStyle 0x7f010078
+int attr actionBarTabBarStyle 0x7f010073
+int attr actionBarTabStyle 0x7f010072
+int attr actionBarTabTextStyle 0x7f010074
+int attr actionBarTheme 0x7f01007a
+int attr actionBarWidgetTheme 0x7f01007b
+int attr actionButtonStyle 0x7f010097
+int attr actionDropDownStyle 0x7f010093
+int attr actionLayout 0x7f01004c
+int attr actionMenuTextAppearance 0x7f01007f
+int attr actionMenuTextColor 0x7f010080
+int attr actionModeBackground 0x7f010083
+int attr actionModeCloseButtonStyle 0x7f010082
+int attr actionModeCloseDrawable 0x7f010085
+int attr actionModeCopyDrawable 0x7f010087
+int attr actionModeCutDrawable 0x7f010086
+int attr actionModeFindDrawable 0x7f01008b
+int attr actionModePasteDrawable 0x7f010088
+int attr actionModePopupWindowStyle 0x7f01008d
+int attr actionModeSelectAllDrawable 0x7f010089
+int attr actionModeShareDrawable 0x7f01008a
+int attr actionModeSplitBackground 0x7f010084
+int attr actionModeStyle 0x7f010081
+int attr actionModeWebSearchDrawable 0x7f01008c
+int attr actionOverflowButtonStyle 0x7f010075
+int attr actionOverflowMenuStyle 0x7f010076
+int attr actionProviderClass 0x7f01004e
+int attr actionViewClass 0x7f01004d
+int attr activityChooserViewStyle 0x7f01009f
+int attr actualImageResource 0x7f010060
+int attr actualImageScaleType 0x7f01003a
+int attr actualImageUri 0x7f01005f
+int attr alertDialogButtonGroupStyle 0x7f0100c1
+int attr alertDialogCenterButtons 0x7f0100c2
+int attr alertDialogStyle 0x7f0100c0
+int attr alertDialogTheme 0x7f0100c3
+int attr arrowHeadLength 0x7f01002b
+int attr arrowShaftLength 0x7f01002c
+int attr autoCompleteTextViewStyle 0x7f0100c8
+int attr background 0x7f01000c
+int attr backgroundImage 0x7f01003b
+int attr backgroundSplit 0x7f01000e
+int attr backgroundStacked 0x7f01000d
+int attr backgroundTint 0x7f0100e4
+int attr backgroundTintMode 0x7f0100e5
+int attr barLength 0x7f01002d
+int attr borderlessButtonStyle 0x7f01009c
+int attr buttonBarButtonStyle 0x7f010099
+int attr buttonBarNegativeButtonStyle 0x7f0100c6
+int attr buttonBarNeutralButtonStyle 0x7f0100c7
+int attr buttonBarPositiveButtonStyle 0x7f0100c5
+int attr buttonBarStyle 0x7f010098
+int attr buttonPanelSideLayout 0x7f01001f
+int attr buttonStyle 0x7f0100c9
+int attr buttonStyleSmall 0x7f0100ca
+int attr buttonTint 0x7f010025
+int attr buttonTintMode 0x7f010026
+int attr checkboxStyle 0x7f0100cb
+int attr checkedTextViewStyle 0x7f0100cc
+int attr closeIcon 0x7f010056
+int attr closeItemLayout 0x7f01001c
+int attr collapseContentDescription 0x7f0100db
+int attr collapseIcon 0x7f0100da
+int attr color 0x7f010027
+int attr colorAccent 0x7f0100b9
+int attr colorButtonNormal 0x7f0100bd
+int attr colorControlActivated 0x7f0100bb
+int attr colorControlHighlight 0x7f0100bc
+int attr colorControlNormal 0x7f0100ba
+int attr colorPrimary 0x7f0100b7
+int attr colorPrimaryDark 0x7f0100b8
+int attr colorSwitchThumbNormal 0x7f0100be
+int attr commitIcon 0x7f01005b
+int attr contentInsetEnd 0x7f010017
+int attr contentInsetLeft 0x7f010018
+int attr contentInsetRight 0x7f010019
+int attr contentInsetStart 0x7f010016
+int attr controlBackground 0x7f0100bf
+int attr customNavigationLayout 0x7f01000f
+int attr defaultQueryHint 0x7f010055
+int attr dialogPreferredPadding 0x7f010091
+int attr dialogTheme 0x7f010090
+int attr displayOptions 0x7f010005
+int attr divider 0x7f01000b
+int attr dividerHorizontal 0x7f01009e
+int attr dividerPadding 0x7f01004a
+int attr dividerVertical 0x7f01009d
+int attr drawableSize 0x7f010029
+int attr drawerArrowStyle 0x7f010000
+int attr dropDownListViewStyle 0x7f0100af
+int attr dropdownListPreferredItemHeight 0x7f010094
+int attr editTextBackground 0x7f0100a5
+int attr editTextColor 0x7f0100a4
+int attr editTextStyle 0x7f0100cd
+int attr elevation 0x7f01001a
+int attr expandActivityOverflowButtonDrawable 0x7f01001e
+int attr fadeDuration 0x7f01002f
+int attr failureImage 0x7f010035
+int attr failureImageScaleType 0x7f010036
+int attr gapBetweenBars 0x7f01002a
+int attr goIcon 0x7f010057
+int attr height 0x7f010001
+int attr hideOnContentScroll 0x7f010015
+int attr homeAsUpIndicator 0x7f010096
+int attr homeLayout 0x7f010010
+int attr icon 0x7f010009
+int attr iconifiedByDefault 0x7f010053
+int attr indeterminateProgressStyle 0x7f010012
+int attr initialActivityCount 0x7f01001d
+int attr isLightTheme 0x7f010002
+int attr itemPadding 0x7f010014
+int attr layout 0x7f010052
+int attr listChoiceBackgroundIndicator 0x7f0100b6
+int attr listDividerAlertDialog 0x7f010092
+int attr listItemLayout 0x7f010023
+int attr listLayout 0x7f010020
+int attr listPopupWindowStyle 0x7f0100b0
+int attr listPreferredItemHeight 0x7f0100aa
+int attr listPreferredItemHeightLarge 0x7f0100ac
+int attr listPreferredItemHeightSmall 0x7f0100ab
+int attr listPreferredItemPaddingLeft 0x7f0100ad
+int attr listPreferredItemPaddingRight 0x7f0100ae
+int attr logo 0x7f01000a
+int attr logoDescription 0x7f0100de
+int attr maxButtonHeight 0x7f0100d9
+int attr measureWithLargestChild 0x7f010048
+int attr multiChoiceItemLayout 0x7f010021
+int attr navigationContentDescription 0x7f0100dd
+int attr navigationIcon 0x7f0100dc
+int attr navigationMode 0x7f010004
+int attr overlapAnchor 0x7f010050
+int attr overlayImage 0x7f01003c
+int attr paddingEnd 0x7f0100e2
+int attr paddingStart 0x7f0100e1
+int attr panelBackground 0x7f0100b3
+int attr panelMenuListTheme 0x7f0100b5
+int attr panelMenuListWidth 0x7f0100b4
+int attr placeholderImage 0x7f010031
+int attr placeholderImageScaleType 0x7f010032
+int attr popupMenuStyle 0x7f0100a2
+int attr popupTheme 0x7f01001b
+int attr popupWindowStyle 0x7f0100a3
+int attr preserveIconSpacing 0x7f01004f
+int attr pressedStateOverlayImage 0x7f01003d
+int attr progressBarAutoRotateInterval 0x7f010039
+int attr progressBarImage 0x7f010037
+int attr progressBarImageScaleType 0x7f010038
+int attr progressBarPadding 0x7f010013
+int attr progressBarStyle 0x7f010011
+int attr queryBackground 0x7f01005d
+int attr queryHint 0x7f010054
+int attr radioButtonStyle 0x7f0100ce
+int attr ratingBarStyle 0x7f0100cf
+int attr retryImage 0x7f010033
+int attr retryImageScaleType 0x7f010034
+int attr roundAsCircle 0x7f01003e
+int attr roundBottomLeft 0x7f010043
+int attr roundBottomRight 0x7f010042
+int attr roundTopLeft 0x7f010040
+int attr roundTopRight 0x7f010041
+int attr roundWithOverlayColor 0x7f010044
+int attr roundedCornerRadius 0x7f01003f
+int attr roundingBorderColor 0x7f010046
+int attr roundingBorderPadding 0x7f010047
+int attr roundingBorderWidth 0x7f010045
+int attr searchHintIcon 0x7f010059
+int attr searchIcon 0x7f010058
+int attr searchViewStyle 0x7f0100a9
+int attr selectableItemBackground 0x7f01009a
+int attr selectableItemBackgroundBorderless 0x7f01009b
+int attr showAsAction 0x7f01004b
+int attr showDividers 0x7f010049
+int attr showText 0x7f010067
+int attr singleChoiceItemLayout 0x7f010022
+int attr spinBars 0x7f010028
+int attr spinnerDropDownItemStyle 0x7f010095
+int attr spinnerStyle 0x7f0100d0
+int attr splitTrack 0x7f010066
+int attr state_above_anchor 0x7f010051
+int attr submitBackground 0x7f01005e
+int attr subtitle 0x7f010006
+int attr subtitleTextAppearance 0x7f0100d3
+int attr subtitleTextColor 0x7f0100e0
+int attr subtitleTextStyle 0x7f010008
+int attr suggestionRowLayout 0x7f01005c
+int attr switchMinWidth 0x7f010064
+int attr switchPadding 0x7f010065
+int attr switchStyle 0x7f0100d1
+int attr switchTextAppearance 0x7f010063
+int attr textAllCaps 0x7f010024
+int attr textAppearanceLargePopupMenu 0x7f01008e
+int attr textAppearanceListItem 0x7f0100b1
+int attr textAppearanceListItemSmall 0x7f0100b2
+int attr textAppearanceSearchResultSubtitle 0x7f0100a7
+int attr textAppearanceSearchResultTitle 0x7f0100a6
+int attr textAppearanceSmallPopupMenu 0x7f01008f
+int attr textColorAlertDialogListItem 0x7f0100c4
+int attr textColorSearchUrl 0x7f0100a8
+int attr theme 0x7f0100e3
+int attr thickness 0x7f01002e
+int attr thumbTextPadding 0x7f010062
+int attr title 0x7f010003
+int attr titleMarginBottom 0x7f0100d8
+int attr titleMarginEnd 0x7f0100d6
+int attr titleMarginStart 0x7f0100d5
+int attr titleMarginTop 0x7f0100d7
+int attr titleMargins 0x7f0100d4
+int attr titleTextAppearance 0x7f0100d2
+int attr titleTextColor 0x7f0100df
+int attr titleTextStyle 0x7f010007
+int attr toolbarNavigationButtonStyle 0x7f0100a1
+int attr toolbarStyle 0x7f0100a0
+int attr track 0x7f010061
+int attr viewAspectRatio 0x7f010030
+int attr voiceIcon 0x7f01005a
+int attr windowActionBar 0x7f010068
+int attr windowActionBarOverlay 0x7f01006a
+int attr windowActionModeOverlay 0x7f01006b
+int attr windowFixedHeightMajor 0x7f01006f
+int attr windowFixedHeightMinor 0x7f01006d
+int attr windowFixedWidthMajor 0x7f01006c
+int attr windowFixedWidthMinor 0x7f01006e
+int attr windowMinWidthMajor 0x7f010070
+int attr windowMinWidthMinor 0x7f010071
+int attr windowNoTitle 0x7f010069
+int bool abc_action_bar_embed_tabs 0x7f0a0002
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f0a0000
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f0a0003
+int bool abc_config_actionMenuItemAllCaps 0x7f0a0004
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f0a0001
+int bool abc_config_closeDialogWhenTouchOutside 0x7f0a0005
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f0a0006
+int color abc_background_cache_hint_selector_material_dark 0x7f0c003b
+int color abc_background_cache_hint_selector_material_light 0x7f0c003c
+int color abc_color_highlight_material 0x7f0c003d
+int color abc_input_method_navigation_guard 0x7f0c0000
+int color abc_primary_text_disable_only_material_dark 0x7f0c003e
+int color abc_primary_text_disable_only_material_light 0x7f0c003f
+int color abc_primary_text_material_dark 0x7f0c0040
+int color abc_primary_text_material_light 0x7f0c0041
+int color abc_search_url_text 0x7f0c0042
+int color abc_search_url_text_normal 0x7f0c0001
+int color abc_search_url_text_pressed 0x7f0c0002
+int color abc_search_url_text_selected 0x7f0c0003
+int color abc_secondary_text_material_dark 0x7f0c0043
+int color abc_secondary_text_material_light 0x7f0c0044
+int color accent_material_dark 0x7f0c0004
+int color accent_material_light 0x7f0c0005
+int color background_floating_material_dark 0x7f0c0006
+int color background_floating_material_light 0x7f0c0007
+int color background_material_dark 0x7f0c0008
+int color background_material_light 0x7f0c0009
+int color bright_foreground_disabled_material_dark 0x7f0c000a
+int color bright_foreground_disabled_material_light 0x7f0c000b
+int color bright_foreground_inverse_material_dark 0x7f0c000c
+int color bright_foreground_inverse_material_light 0x7f0c000d
+int color bright_foreground_material_dark 0x7f0c000e
+int color bright_foreground_material_light 0x7f0c000f
+int color button_material_dark 0x7f0c0010
+int color button_material_light 0x7f0c0011
+int color catalyst_redbox_background 0x7f0c0012
+int color dim_foreground_disabled_material_dark 0x7f0c0013
+int color dim_foreground_disabled_material_light 0x7f0c0014
+int color dim_foreground_material_dark 0x7f0c0015
+int color dim_foreground_material_light 0x7f0c0016
+int color foreground_material_dark 0x7f0c0017
+int color foreground_material_light 0x7f0c0018
+int color highlighted_text_material_dark 0x7f0c0019
+int color highlighted_text_material_light 0x7f0c001a
+int color hint_foreground_material_dark 0x7f0c001b
+int color hint_foreground_material_light 0x7f0c001c
+int color material_blue_grey_800 0x7f0c001d
+int color material_blue_grey_900 0x7f0c001e
+int color material_blue_grey_950 0x7f0c001f
+int color material_deep_teal_200 0x7f0c0020
+int color material_deep_teal_500 0x7f0c0021
+int color material_grey_100 0x7f0c0022
+int color material_grey_300 0x7f0c0023
+int color material_grey_50 0x7f0c0024
+int color material_grey_600 0x7f0c0025
+int color material_grey_800 0x7f0c0026
+int color material_grey_850 0x7f0c0027
+int color material_grey_900 0x7f0c0028
+int color primary_dark_material_dark 0x7f0c0029
+int color primary_dark_material_light 0x7f0c002a
+int color primary_material_dark 0x7f0c002b
+int color primary_material_light 0x7f0c002c
+int color primary_text_default_material_dark 0x7f0c002d
+int color primary_text_default_material_light 0x7f0c002e
+int color primary_text_disabled_material_dark 0x7f0c002f
+int color primary_text_disabled_material_light 0x7f0c0030
+int color ripple_material_dark 0x7f0c0031
+int color ripple_material_light 0x7f0c0032
+int color secondary_text_default_material_dark 0x7f0c0033
+int color secondary_text_default_material_light 0x7f0c0034
+int color secondary_text_disabled_material_dark 0x7f0c0035
+int color secondary_text_disabled_material_light 0x7f0c0036
+int color switch_thumb_disabled_material_dark 0x7f0c0037
+int color switch_thumb_disabled_material_light 0x7f0c0038
+int color switch_thumb_material_dark 0x7f0c0045
+int color switch_thumb_material_light 0x7f0c0046
+int color switch_thumb_normal_material_dark 0x7f0c0039
+int color switch_thumb_normal_material_light 0x7f0c003a
+int dimen abc_action_bar_content_inset_material 0x7f08000b
+int dimen abc_action_bar_default_height_material 0x7f080001
+int dimen abc_action_bar_default_padding_end_material 0x7f08000c
+int dimen abc_action_bar_default_padding_start_material 0x7f08000d
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f08000f
+int dimen abc_action_bar_overflow_padding_end_material 0x7f080010
+int dimen abc_action_bar_overflow_padding_start_material 0x7f080011
+int dimen abc_action_bar_progress_bar_size 0x7f080002
+int dimen abc_action_bar_stacked_max_height 0x7f080012
+int dimen abc_action_bar_stacked_tab_max_width 0x7f080013
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f080014
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f080015
+int dimen abc_action_button_min_height_material 0x7f080016
+int dimen abc_action_button_min_width_material 0x7f080017
+int dimen abc_action_button_min_width_overflow_material 0x7f080018
+int dimen abc_alert_dialog_button_bar_height 0x7f080000
+int dimen abc_button_inset_horizontal_material 0x7f080019
+int dimen abc_button_inset_vertical_material 0x7f08001a
+int dimen abc_button_padding_horizontal_material 0x7f08001b
+int dimen abc_button_padding_vertical_material 0x7f08001c
+int dimen abc_config_prefDialogWidth 0x7f080005
+int dimen abc_control_corner_material 0x7f08001d
+int dimen abc_control_inset_material 0x7f08001e
+int dimen abc_control_padding_material 0x7f08001f
+int dimen abc_dialog_list_padding_vertical_material 0x7f080020
+int dimen abc_dialog_min_width_major 0x7f080021
+int dimen abc_dialog_min_width_minor 0x7f080022
+int dimen abc_dialog_padding_material 0x7f080023
+int dimen abc_dialog_padding_top_material 0x7f080024
+int dimen abc_disabled_alpha_material_dark 0x7f080025
+int dimen abc_disabled_alpha_material_light 0x7f080026
+int dimen abc_dropdownitem_icon_width 0x7f080027
+int dimen abc_dropdownitem_text_padding_left 0x7f080028
+int dimen abc_dropdownitem_text_padding_right 0x7f080029
+int dimen abc_edit_text_inset_bottom_material 0x7f08002a
+int dimen abc_edit_text_inset_horizontal_material 0x7f08002b
+int dimen abc_edit_text_inset_top_material 0x7f08002c
+int dimen abc_floating_window_z 0x7f08002d
+int dimen abc_list_item_padding_horizontal_material 0x7f08002e
+int dimen abc_panel_menu_list_width 0x7f08002f
+int dimen abc_search_view_preferred_width 0x7f080030
+int dimen abc_search_view_text_min_width 0x7f080006
+int dimen abc_switch_padding 0x7f08000e
+int dimen abc_text_size_body_1_material 0x7f080031
+int dimen abc_text_size_body_2_material 0x7f080032
+int dimen abc_text_size_button_material 0x7f080033
+int dimen abc_text_size_caption_material 0x7f080034
+int dimen abc_text_size_display_1_material 0x7f080035
+int dimen abc_text_size_display_2_material 0x7f080036
+int dimen abc_text_size_display_3_material 0x7f080037
+int dimen abc_text_size_display_4_material 0x7f080038
+int dimen abc_text_size_headline_material 0x7f080039
+int dimen abc_text_size_large_material 0x7f08003a
+int dimen abc_text_size_medium_material 0x7f08003b
+int dimen abc_text_size_menu_material 0x7f08003c
+int dimen abc_text_size_small_material 0x7f08003d
+int dimen abc_text_size_subhead_material 0x7f08003e
+int dimen abc_text_size_subtitle_material_toolbar 0x7f080003
+int dimen abc_text_size_title_material 0x7f08003f
+int dimen abc_text_size_title_material_toolbar 0x7f080004
+int dimen dialog_fixed_height_major 0x7f080007
+int dimen dialog_fixed_height_minor 0x7f080008
+int dimen dialog_fixed_width_major 0x7f080009
+int dimen dialog_fixed_width_minor 0x7f08000a
+int dimen disabled_alpha_material_dark 0x7f080040
+int dimen disabled_alpha_material_light 0x7f080041
+int dimen highlight_alpha_material_colored 0x7f080042
+int dimen highlight_alpha_material_dark 0x7f080043
+int dimen highlight_alpha_material_light 0x7f080044
+int dimen notification_large_icon_height 0x7f080045
+int dimen notification_large_icon_width 0x7f080046
+int dimen notification_subtext_size 0x7f080047
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
+int drawable abc_action_bar_item_background_material 0x7f020001
+int drawable abc_btn_borderless_material 0x7f020002
+int drawable abc_btn_check_material 0x7f020003
+int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
+int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
+int drawable abc_btn_colored_material 0x7f020006
+int drawable abc_btn_default_mtrl_shape 0x7f020007
+int drawable abc_btn_radio_material 0x7f020008
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
+int drawable abc_cab_background_internal_bg 0x7f02000f
+int drawable abc_cab_background_top_material 0x7f020010
+int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
+int drawable abc_control_background_material 0x7f020012
+int drawable abc_dialog_material_background_dark 0x7f020013
+int drawable abc_dialog_material_background_light 0x7f020014
+int drawable abc_edit_text_material 0x7f020015
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
+int drawable abc_ic_clear_mtrl_alpha 0x7f020017
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
+int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020021
+int drawable abc_item_background_holo_dark 0x7f020022
+int drawable abc_item_background_holo_light 0x7f020023
+int drawable abc_list_divider_mtrl_alpha 0x7f020024
+int drawable abc_list_focused_holo 0x7f020025
+int drawable abc_list_longpressed_holo 0x7f020026
+int drawable abc_list_pressed_holo_dark 0x7f020027
+int drawable abc_list_pressed_holo_light 0x7f020028
+int drawable abc_list_selector_background_transition_holo_dark 0x7f020029
+int drawable abc_list_selector_background_transition_holo_light 0x7f02002a
+int drawable abc_list_selector_disabled_holo_dark 0x7f02002b
+int drawable abc_list_selector_disabled_holo_light 0x7f02002c
+int drawable abc_list_selector_holo_dark 0x7f02002d
+int drawable abc_list_selector_holo_light 0x7f02002e
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002f
+int drawable abc_popup_background_mtrl_mult 0x7f020030
+int drawable abc_ratingbar_full_material 0x7f020031
+int drawable abc_spinner_mtrl_am_alpha 0x7f020032
+int drawable abc_spinner_textfield_background_material 0x7f020033
+int drawable abc_switch_thumb_material 0x7f020034
+int drawable abc_switch_track_mtrl_alpha 0x7f020035
+int drawable abc_tab_indicator_material 0x7f020036
+int drawable abc_tab_indicator_mtrl_alpha 0x7f020037
+int drawable abc_text_cursor_material 0x7f020038
+int drawable abc_textfield_activated_mtrl_alpha 0x7f020039
+int drawable abc_textfield_default_mtrl_alpha 0x7f02003a
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f02003b
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f02003c
+int drawable abc_textfield_search_material 0x7f02003d
+int drawable notification_template_icon_bg 0x7f02003e
+int id action0 0x7f0d0058
+int id action_bar 0x7f0d0048
+int id action_bar_activity_content 0x7f0d0000
+int id action_bar_container 0x7f0d0047
+int id action_bar_root 0x7f0d0043
+int id action_bar_spinner 0x7f0d0001
+int id action_bar_subtitle 0x7f0d002c
+int id action_bar_title 0x7f0d002b
+int id action_context_bar 0x7f0d0049
+int id action_divider 0x7f0d005c
+int id action_menu_divider 0x7f0d0002
+int id action_menu_presenter 0x7f0d0003
+int id action_mode_bar 0x7f0d0045
+int id action_mode_bar_stub 0x7f0d0044
+int id action_mode_close_button 0x7f0d002d
+int id activity_chooser_view_content 0x7f0d002e
+int id alertTitle 0x7f0d0038
+int id always 0x7f0d0025
+int id beginning 0x7f0d0022
+int id buttonPanel 0x7f0d003e
+int id cancel_action 0x7f0d0059
+int id catalyst_redbox_title 0x7f0d0067
+int id center 0x7f0d001a
+int id centerCrop 0x7f0d001b
+int id centerInside 0x7f0d001c
+int id checkbox 0x7f0d0040
+int id chronometer 0x7f0d005f
+int id collapseActionView 0x7f0d0026
+int id contentPanel 0x7f0d0039
+int id custom 0x7f0d003d
+int id customPanel 0x7f0d003c
+int id decor_content_parent 0x7f0d0046
+int id default_activity_button 0x7f0d0031
+int id disableHome 0x7f0d000e
+int id edit_query 0x7f0d004a
+int id end 0x7f0d0023
+int id end_padder 0x7f0d0064
+int id expand_activities_button 0x7f0d002f
+int id expanded_menu 0x7f0d003f
+int id fitCenter 0x7f0d001d
+int id fitEnd 0x7f0d001e
+int id fitStart 0x7f0d001f
+int id fitXY 0x7f0d0020
+int id focusCrop 0x7f0d0021
+int id fps_text 0x7f0d0057
+int id home 0x7f0d0004
+int id homeAsUp 0x7f0d000f
+int id icon 0x7f0d0033
+int id ifRoom 0x7f0d0027
+int id image 0x7f0d0030
+int id info 0x7f0d0063
+int id line1 0x7f0d005d
+int id line3 0x7f0d0061
+int id listMode 0x7f0d000b
+int id list_item 0x7f0d0032
+int id media_actions 0x7f0d005b
+int id middle 0x7f0d0024
+int id multiply 0x7f0d0015
+int id never 0x7f0d0028
+int id none 0x7f0d0010
+int id normal 0x7f0d000c
+int id parentPanel 0x7f0d0035
+int id progress_circular 0x7f0d0005
+int id progress_horizontal 0x7f0d0006
+int id radio 0x7f0d0042
+int id react_test_id 0x7f0d0007
+int id rn_frame_file 0x7f0d0066
+int id rn_frame_method 0x7f0d0065
+int id rn_redbox_copy_button 0x7f0d006e
+int id rn_redbox_dismiss_button 0x7f0d006c
+int id rn_redbox_line_separator 0x7f0d0069
+int id rn_redbox_loading_indicator 0x7f0d006a
+int id rn_redbox_reload_button 0x7f0d006d
+int id rn_redbox_report_button 0x7f0d006f
+int id rn_redbox_report_label 0x7f0d006b
+int id rn_redbox_stack 0x7f0d0068
+int id screen 0x7f0d0016
+int id scrollView 0x7f0d003a
+int id search_badge 0x7f0d004c
+int id search_bar 0x7f0d004b
+int id search_button 0x7f0d004d
+int id search_close_btn 0x7f0d0052
+int id search_edit_frame 0x7f0d004e
+int id search_go_btn 0x7f0d0054
+int id search_mag_icon 0x7f0d004f
+int id search_plate 0x7f0d0050
+int id search_src_text 0x7f0d0051
+int id search_voice_btn 0x7f0d0055
+int id select_dialog_listview 0x7f0d0056
+int id shortcut 0x7f0d0041
+int id showCustom 0x7f0d0011
+int id showHome 0x7f0d0012
+int id showTitle 0x7f0d0013
+int id split_action_bar 0x7f0d0008
+int id src_atop 0x7f0d0017
+int id src_in 0x7f0d0018
+int id src_over 0x7f0d0019
+int id status_bar_latest_event_content 0x7f0d005a
+int id submit_area 0x7f0d0053
+int id tabMode 0x7f0d000d
+int id text 0x7f0d0062
+int id text2 0x7f0d0060
+int id textSpacerNoButtons 0x7f0d003b
+int id time 0x7f0d005e
+int id title 0x7f0d0034
+int id title_template 0x7f0d0037
+int id topPanel 0x7f0d0036
+int id up 0x7f0d0009
+int id useLogo 0x7f0d0014
+int id view_tag_native_id 0x7f0d000a
+int id withText 0x7f0d0029
+int id wrap_content 0x7f0d002a
+int integer abc_config_activityDefaultDur 0x7f0b0001
+int integer abc_config_activityShortDur 0x7f0b0002
+int integer abc_max_action_buttons 0x7f0b0000
+int integer cancel_button_image_alpha 0x7f0b0003
+int integer status_bar_notification_info_maxnum 0x7f0b0004
+int layout abc_action_bar_title_item 0x7f040000
+int layout abc_action_bar_up_container 0x7f040001
+int layout abc_action_bar_view_list_nav_layout 0x7f040002
+int layout abc_action_menu_item_layout 0x7f040003
+int layout abc_action_menu_layout 0x7f040004
+int layout abc_action_mode_bar 0x7f040005
+int layout abc_action_mode_close_item_material 0x7f040006
+int layout abc_activity_chooser_view 0x7f040007
+int layout abc_activity_chooser_view_list_item 0x7f040008
+int layout abc_alert_dialog_material 0x7f040009
+int layout abc_dialog_title_material 0x7f04000a
+int layout abc_expanded_menu_layout 0x7f04000b
+int layout abc_list_menu_item_checkbox 0x7f04000c
+int layout abc_list_menu_item_icon 0x7f04000d
+int layout abc_list_menu_item_layout 0x7f04000e
+int layout abc_list_menu_item_radio 0x7f04000f
+int layout abc_popup_menu_item_layout 0x7f040010
+int layout abc_screen_content_include 0x7f040011
+int layout abc_screen_simple 0x7f040012
+int layout abc_screen_simple_overlay_action_mode 0x7f040013
+int layout abc_screen_toolbar 0x7f040014
+int layout abc_search_dropdown_item_icons_2line 0x7f040015
+int layout abc_search_view 0x7f040016
+int layout abc_select_dialog_material 0x7f040017
+int layout dev_loading_view 0x7f040018
+int layout fps_view 0x7f040019
+int layout notification_media_action 0x7f04001a
+int layout notification_media_cancel_action 0x7f04001b
+int layout notification_template_big_media 0x7f04001c
+int layout notification_template_big_media_narrow 0x7f04001d
+int layout notification_template_lines 0x7f04001e
+int layout notification_template_media 0x7f04001f
+int layout notification_template_part_chronometer 0x7f040020
+int layout notification_template_part_time 0x7f040021
+int layout redbox_item_frame 0x7f040022
+int layout redbox_item_title 0x7f040023
+int layout redbox_view 0x7f040024
+int layout select_dialog_item_material 0x7f040025
+int layout select_dialog_multichoice_material 0x7f040026
+int layout select_dialog_singlechoice_material 0x7f040027
+int layout support_simple_spinner_dropdown_item 0x7f040028
+int mipmap ic_launcher 0x7f030000
+int string abc_action_bar_home_description 0x7f070000
+int string abc_action_bar_home_description_format 0x7f070001
+int string abc_action_bar_home_subtitle_description_format 0x7f070002
+int string abc_action_bar_up_description 0x7f070003
+int string abc_action_menu_overflow_description 0x7f070004
+int string abc_action_mode_done 0x7f070005
+int string abc_activity_chooser_view_see_all 0x7f070006
+int string abc_activitychooserview_choose_application 0x7f070007
+int string abc_search_hint 0x7f070008
+int string abc_searchview_description_clear 0x7f070009
+int string abc_searchview_description_query 0x7f07000a
+int string abc_searchview_description_search 0x7f07000b
+int string abc_searchview_description_submit 0x7f07000c
+int string abc_searchview_description_voice 0x7f07000d
+int string abc_shareactionprovider_share_with 0x7f07000e
+int string abc_shareactionprovider_share_with_application 0x7f07000f
+int string abc_toolbar_collapse_description 0x7f070010
+int string app_name 0x7f070012
+int string catalyst_copy_button 0x7f070013
+int string catalyst_debugjs 0x7f070014
+int string catalyst_debugjs_nuclide 0x7f070015
+int string catalyst_debugjs_nuclide_failure 0x7f070016
+int string catalyst_debugjs_off 0x7f070017
+int string catalyst_dismiss_button 0x7f070018
+int string catalyst_element_inspector 0x7f070019
+int string catalyst_heap_capture 0x7f07001a
+int string catalyst_hot_module_replacement 0x7f07001b
+int string catalyst_hot_module_replacement_off 0x7f07001c
+int string catalyst_jsload_error 0x7f07001d
+int string catalyst_live_reload 0x7f07001e
+int string catalyst_live_reload_off 0x7f07001f
+int string catalyst_loading_from_url 0x7f070020
+int string catalyst_perf_monitor 0x7f070021
+int string catalyst_perf_monitor_off 0x7f070022
+int string catalyst_poke_sampling_profiler 0x7f070023
+int string catalyst_reload_button 0x7f070024
+int string catalyst_reloadjs 0x7f070025
+int string catalyst_remotedbg_error 0x7f070026
+int string catalyst_remotedbg_message 0x7f070027
+int string catalyst_report_button 0x7f070028
+int string catalyst_settings 0x7f070029
+int string catalyst_settings_title 0x7f07002a
+int string status_bar_notification_info_overflow 0x7f070011
+int style AlertDialog_AppCompat 0x7f09007a
+int style AlertDialog_AppCompat_Light 0x7f09007b
+int style Animation_AppCompat_Dialog 0x7f09007c
+int style Animation_AppCompat_DropDownUp 0x7f09007d
+int style Animation_Catalyst_RedBox 0x7f09007e
+int style AppTheme 0x7f09007f
+int style Base_AlertDialog_AppCompat 0x7f090080
+int style Base_AlertDialog_AppCompat_Light 0x7f090081
+int style Base_Animation_AppCompat_Dialog 0x7f090082
+int style Base_Animation_AppCompat_DropDownUp 0x7f090083
+int style Base_DialogWindowTitle_AppCompat 0x7f090084
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f090085
+int style Base_TextAppearance_AppCompat 0x7f09002d
+int style Base_TextAppearance_AppCompat_Body1 0x7f09002e
+int style Base_TextAppearance_AppCompat_Body2 0x7f09002f
+int style Base_TextAppearance_AppCompat_Button 0x7f090018
+int style Base_TextAppearance_AppCompat_Caption 0x7f090030
+int style Base_TextAppearance_AppCompat_Display1 0x7f090031
+int style Base_TextAppearance_AppCompat_Display2 0x7f090032
+int style Base_TextAppearance_AppCompat_Display3 0x7f090033
+int style Base_TextAppearance_AppCompat_Display4 0x7f090034
+int style Base_TextAppearance_AppCompat_Headline 0x7f090035
+int style Base_TextAppearance_AppCompat_Inverse 0x7f090003
+int style Base_TextAppearance_AppCompat_Large 0x7f090036
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f090004
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f090037
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f090038
+int style Base_TextAppearance_AppCompat_Medium 0x7f090039
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f090005
+int style Base_TextAppearance_AppCompat_Menu 0x7f09003a
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f090086
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f09003b
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f09003c
+int style Base_TextAppearance_AppCompat_Small 0x7f09003d
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f090006
+int style Base_TextAppearance_AppCompat_Subhead 0x7f09003e
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f090007
+int style Base_TextAppearance_AppCompat_Title 0x7f09003f
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f090008
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f090040
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f090041
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f090042
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f090043
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f090044
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f090045
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f090046
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f090047
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f090076
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f090087
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f090048
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f090049
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f09004a
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f09004b
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f090088
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f09004c
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f09004d
+int style Base_Theme_AppCompat 0x7f09004e
+int style Base_Theme_AppCompat_CompactMenu 0x7f090089
+int style Base_Theme_AppCompat_Dialog 0x7f090009
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f09008a
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f09008b
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f09008c
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f090001
+int style Base_Theme_AppCompat_Light 0x7f09004f
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f09008d
+int style Base_Theme_AppCompat_Light_Dialog 0x7f09000a
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f09008e
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f09008f
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f090090
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f090002
+int style Base_ThemeOverlay_AppCompat 0x7f090091
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f090092
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f090093
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f090094
+int style Base_ThemeOverlay_AppCompat_Light 0x7f090095
+int style Base_V11_Theme_AppCompat_Dialog 0x7f09000b
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f09000c
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f090014
+int style Base_V12_Widget_AppCompat_EditText 0x7f090015
+int style Base_V21_Theme_AppCompat 0x7f090050
+int style Base_V21_Theme_AppCompat_Dialog 0x7f090051
+int style Base_V21_Theme_AppCompat_Light 0x7f090052
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f090053
+int style Base_V22_Theme_AppCompat 0x7f090074
+int style Base_V22_Theme_AppCompat_Light 0x7f090075
+int style Base_V23_Theme_AppCompat 0x7f090077
+int style Base_V23_Theme_AppCompat_Light 0x7f090078
+int style Base_V7_Theme_AppCompat 0x7f090096
+int style Base_V7_Theme_AppCompat_Dialog 0x7f090097
+int style Base_V7_Theme_AppCompat_Light 0x7f090098
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f090099
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f09009a
+int style Base_V7_Widget_AppCompat_EditText 0x7f09009b
+int style Base_Widget_AppCompat_ActionBar 0x7f09009c
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f09009d
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f09009e
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f090054
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f090055
+int style Base_Widget_AppCompat_ActionButton 0x7f090056
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f090057
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f090058
+int style Base_Widget_AppCompat_ActionMode 0x7f09009f
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f0900a0
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f090016
+int style Base_Widget_AppCompat_Button 0x7f090059
+int style Base_Widget_AppCompat_Button_Borderless 0x7f09005a
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f09005b
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0900a1
+int style Base_Widget_AppCompat_Button_Colored 0x7f090079
+int style Base_Widget_AppCompat_Button_Small 0x7f09005c
+int style Base_Widget_AppCompat_ButtonBar 0x7f09005d
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0900a2
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f09005e
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f09005f
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0900a3
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f090000
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0900a4
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f090060
+int style Base_Widget_AppCompat_EditText 0x7f090017
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f0900a5
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0900a6
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0900a7
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f090061
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f090062
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f090063
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f090064
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f090065
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f090066
+int style Base_Widget_AppCompat_ListView 0x7f090067
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f090068
+int style Base_Widget_AppCompat_ListView_Menu 0x7f090069
+int style Base_Widget_AppCompat_PopupMenu 0x7f09006a
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f09006b
+int style Base_Widget_AppCompat_PopupWindow 0x7f0900a8
+int style Base_Widget_AppCompat_ProgressBar 0x7f09000d
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f09000e
+int style Base_Widget_AppCompat_RatingBar 0x7f09006c
+int style Base_Widget_AppCompat_SearchView 0x7f0900a9
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0900aa
+int style Base_Widget_AppCompat_Spinner 0x7f09006d
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f09006e
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f09006f
+int style Base_Widget_AppCompat_Toolbar 0x7f0900ab
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f090070
+int style CalendarDatePickerDialog 0x7f0900ac
+int style CalendarDatePickerStyle 0x7f0900ad
+int style ClockTimePickerDialog 0x7f0900ae
+int style ClockTimePickerStyle 0x7f0900af
+int style DialogAnimationFade 0x7f0900b0
+int style DialogAnimationSlide 0x7f0900b1
+int style Platform_AppCompat 0x7f09000f
+int style Platform_AppCompat_Light 0x7f090010
+int style Platform_ThemeOverlay_AppCompat 0x7f090071
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f090072
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f090073
+int style Platform_V11_AppCompat 0x7f090011
+int style Platform_V11_AppCompat_Light 0x7f090012
+int style Platform_V14_AppCompat 0x7f090019
+int style Platform_V14_AppCompat_Light 0x7f09001a
+int style Platform_Widget_AppCompat_Spinner 0x7f090013
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f090020
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f090021
+int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f090022
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f090023
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f090024
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f090025
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f090026
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f090027
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f090028
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f090029
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f09002a
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f09002b
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f09002c
+int style SpinnerDatePickerDialog 0x7f0900b2
+int style SpinnerDatePickerStyle 0x7f0900b3
+int style SpinnerTimePickerDialog 0x7f0900b4
+int style SpinnerTimePickerStyle 0x7f0900b5
+int style TextAppearance_AppCompat 0x7f0900b6
+int style TextAppearance_AppCompat_Body1 0x7f0900b7
+int style TextAppearance_AppCompat_Body2 0x7f0900b8
+int style TextAppearance_AppCompat_Button 0x7f0900b9
+int style TextAppearance_AppCompat_Caption 0x7f0900ba
+int style TextAppearance_AppCompat_Display1 0x7f0900bb
+int style TextAppearance_AppCompat_Display2 0x7f0900bc
+int style TextAppearance_AppCompat_Display3 0x7f0900bd
+int style TextAppearance_AppCompat_Display4 0x7f0900be
+int style TextAppearance_AppCompat_Headline 0x7f0900bf
+int style TextAppearance_AppCompat_Inverse 0x7f0900c0
+int style TextAppearance_AppCompat_Large 0x7f0900c1
+int style TextAppearance_AppCompat_Large_Inverse 0x7f0900c2
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0900c3
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0900c4
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0900c5
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0900c6
+int style TextAppearance_AppCompat_Medium 0x7f0900c7
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f0900c8
+int style TextAppearance_AppCompat_Menu 0x7f0900c9
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0900ca
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f0900cb
+int style TextAppearance_AppCompat_Small 0x7f0900cc
+int style TextAppearance_AppCompat_Small_Inverse 0x7f0900cd
+int style TextAppearance_AppCompat_Subhead 0x7f0900ce
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0900cf
+int style TextAppearance_AppCompat_Title 0x7f0900d0
+int style TextAppearance_AppCompat_Title_Inverse 0x7f0900d1
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0900d2
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0900d3
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0900d4
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0900d5
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0900d6
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0900d7
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0900d8
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0900d9
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0900da
+int style TextAppearance_AppCompat_Widget_Button 0x7f0900db
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0900dc
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0900dd
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0900de
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0900df
+int style TextAppearance_AppCompat_Widget_Switch 0x7f0900e0
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0900e1
+int style TextAppearance_StatusBar_EventContent 0x7f09001b
+int style TextAppearance_StatusBar_EventContent_Info 0x7f09001c
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f09001d
+int style TextAppearance_StatusBar_EventContent_Time 0x7f09001e
+int style TextAppearance_StatusBar_EventContent_Title 0x7f09001f
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0900e2
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0900e3
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0900e4
+int style Theme 0x7f0900e5
+int style Theme_AppCompat 0x7f0900e6
+int style Theme_AppCompat_CompactMenu 0x7f0900e7
+int style Theme_AppCompat_Dialog 0x7f0900e8
+int style Theme_AppCompat_Dialog_Alert 0x7f0900e9
+int style Theme_AppCompat_Dialog_MinWidth 0x7f0900ea
+int style Theme_AppCompat_DialogWhenLarge 0x7f0900eb
+int style Theme_AppCompat_Light 0x7f0900ec
+int style Theme_AppCompat_Light_DarkActionBar 0x7f0900ed
+int style Theme_AppCompat_Light_Dialog 0x7f0900ee
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f0900ef
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0900f0
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0900f1
+int style Theme_AppCompat_Light_NoActionBar 0x7f0900f2
+int style Theme_AppCompat_NoActionBar 0x7f0900f3
+int style Theme_Catalyst 0x7f0900f4
+int style Theme_Catalyst_RedBox 0x7f0900f5
+int style Theme_FullScreenDialog 0x7f0900f6
+int style Theme_FullScreenDialogAnimatedFade 0x7f0900f7
+int style Theme_FullScreenDialogAnimatedSlide 0x7f0900f8
+int style Theme_ReactNative_AppCompat_Light 0x7f0900f9
+int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f0900fa
+int style ThemeOverlay_AppCompat 0x7f0900fb
+int style ThemeOverlay_AppCompat_ActionBar 0x7f0900fc
+int style ThemeOverlay_AppCompat_Dark 0x7f0900fd
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0900fe
+int style ThemeOverlay_AppCompat_Light 0x7f0900ff
+int style Widget_AppCompat_ActionBar 0x7f090100
+int style Widget_AppCompat_ActionBar_Solid 0x7f090101
+int style Widget_AppCompat_ActionBar_TabBar 0x7f090102
+int style Widget_AppCompat_ActionBar_TabText 0x7f090103
+int style Widget_AppCompat_ActionBar_TabView 0x7f090104
+int style Widget_AppCompat_ActionButton 0x7f090105
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f090106
+int style Widget_AppCompat_ActionButton_Overflow 0x7f090107
+int style Widget_AppCompat_ActionMode 0x7f090108
+int style Widget_AppCompat_ActivityChooserView 0x7f090109
+int style Widget_AppCompat_AutoCompleteTextView 0x7f09010a
+int style Widget_AppCompat_Button 0x7f09010b
+int style Widget_AppCompat_Button_Borderless 0x7f09010c
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f09010d
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f09010e
+int style Widget_AppCompat_Button_Colored 0x7f09010f
+int style Widget_AppCompat_Button_Small 0x7f090110
+int style Widget_AppCompat_ButtonBar 0x7f090111
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f090112
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f090113
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f090114
+int style Widget_AppCompat_CompoundButton_Switch 0x7f090115
+int style Widget_AppCompat_DrawerArrowToggle 0x7f090116
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f090117
+int style Widget_AppCompat_EditText 0x7f090118
+int style Widget_AppCompat_Light_ActionBar 0x7f090119
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f09011a
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f09011b
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f09011c
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f09011d
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f09011e
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f09011f
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f090120
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f090121
+int style Widget_AppCompat_Light_ActionButton 0x7f090122
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f090123
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f090124
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f090125
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f090126
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f090127
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f090128
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f090129
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f09012a
+int style Widget_AppCompat_Light_PopupMenu 0x7f09012b
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f09012c
+int style Widget_AppCompat_Light_SearchView 0x7f09012d
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f09012e
+int style Widget_AppCompat_ListPopupWindow 0x7f09012f
+int style Widget_AppCompat_ListView 0x7f090130
+int style Widget_AppCompat_ListView_DropDown 0x7f090131
+int style Widget_AppCompat_ListView_Menu 0x7f090132
+int style Widget_AppCompat_PopupMenu 0x7f090133
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f090134
+int style Widget_AppCompat_PopupWindow 0x7f090135
+int style Widget_AppCompat_ProgressBar 0x7f090136
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f090137
+int style Widget_AppCompat_RatingBar 0x7f090138
+int style Widget_AppCompat_SearchView 0x7f090139
+int style Widget_AppCompat_SearchView_ActionBar 0x7f09013a
+int style Widget_AppCompat_Spinner 0x7f09013b
+int style Widget_AppCompat_Spinner_DropDown 0x7f09013c
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f09013d
+int style Widget_AppCompat_Spinner_Underlined 0x7f09013e
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f09013f
+int style Widget_AppCompat_Toolbar 0x7f090140
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f090141
+int style redboxButton 0x7f090142
+int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010096 }
+int styleable ActionBar_background 10
+int styleable ActionBar_backgroundSplit 12
+int styleable ActionBar_backgroundStacked 11
+int styleable ActionBar_contentInsetEnd 21
+int styleable ActionBar_contentInsetLeft 22
+int styleable ActionBar_contentInsetRight 23
+int styleable ActionBar_contentInsetStart 20
+int styleable ActionBar_customNavigationLayout 13
+int styleable ActionBar_displayOptions 3
+int styleable ActionBar_divider 9
+int styleable ActionBar_elevation 24
+int styleable ActionBar_height 0
+int styleable ActionBar_hideOnContentScroll 19
+int styleable ActionBar_homeAsUpIndicator 26
+int styleable ActionBar_homeLayout 14
+int styleable ActionBar_icon 7
+int styleable ActionBar_indeterminateProgressStyle 16
+int styleable ActionBar_itemPadding 18
+int styleable ActionBar_logo 8
+int styleable ActionBar_navigationMode 2
+int styleable ActionBar_popupTheme 25
+int styleable ActionBar_progressBarPadding 17
+int styleable ActionBar_progressBarStyle 15
+int styleable ActionBar_subtitle 4
+int styleable ActionBar_subtitleTextStyle 6
+int styleable ActionBar_title 1
+int styleable ActionBar_titleTextStyle 5
+int[] styleable ActionBarLayout { 0x010100b3 }
+int styleable ActionBarLayout_android_layout_gravity 0
+int[] styleable ActionMenuItemView { 0x0101013f }
+int styleable ActionMenuItemView_android_minWidth 0
+int[] styleable ActionMenuView { }
+int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
+int styleable ActionMode_background 3
+int styleable ActionMode_backgroundSplit 4
+int styleable ActionMode_closeItemLayout 5
+int styleable ActionMode_height 0
+int styleable ActionMode_subtitleTextStyle 2
+int styleable ActionMode_titleTextStyle 1
+int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
+int styleable ActivityChooserView_initialActivityCount 0
+int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonPanelSideLayout 1
+int styleable AlertDialog_listItemLayout 5
+int styleable AlertDialog_listLayout 2
+int styleable AlertDialog_multiChoiceItemLayout 3
+int styleable AlertDialog_singleChoiceItemLayout 4
+int[] styleable AppCompatTextView { 0x01010034, 0x7f010024 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_textAllCaps 1
+int[] styleable CompoundButton { 0x01010107, 0x7f010025, 0x7f010026 }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonTint 1
+int styleable CompoundButton_buttonTintMode 2
+int[] styleable DrawerArrowToggle { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }
+int styleable DrawerArrowToggle_arrowHeadLength 4
+int styleable DrawerArrowToggle_arrowShaftLength 5
+int styleable DrawerArrowToggle_barLength 6
+int styleable DrawerArrowToggle_color 0
+int styleable DrawerArrowToggle_drawableSize 2
+int styleable DrawerArrowToggle_gapBetweenBars 3
+int styleable DrawerArrowToggle_spinBars 1
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable GenericDraweeHierarchy { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 }
+int styleable GenericDraweeHierarchy_actualImageScaleType 11
+int styleable GenericDraweeHierarchy_backgroundImage 12
+int styleable GenericDraweeHierarchy_fadeDuration 0
+int styleable GenericDraweeHierarchy_failureImage 6
+int styleable GenericDraweeHierarchy_failureImageScaleType 7
+int styleable GenericDraweeHierarchy_overlayImage 13
+int styleable GenericDraweeHierarchy_placeholderImage 2
+int styleable GenericDraweeHierarchy_placeholderImageScaleType 3
+int styleable GenericDraweeHierarchy_pressedStateOverlayImage 14
+int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 10
+int styleable GenericDraweeHierarchy_progressBarImage 8
+int styleable GenericDraweeHierarchy_progressBarImageScaleType 9
+int styleable GenericDraweeHierarchy_retryImage 4
+int styleable GenericDraweeHierarchy_retryImageScaleType 5
+int styleable GenericDraweeHierarchy_roundAsCircle 15
+int styleable GenericDraweeHierarchy_roundBottomLeft 20
+int styleable GenericDraweeHierarchy_roundBottomRight 19
+int styleable GenericDraweeHierarchy_roundTopLeft 17
+int styleable GenericDraweeHierarchy_roundTopRight 18
+int styleable GenericDraweeHierarchy_roundWithOverlayColor 21
+int styleable GenericDraweeHierarchy_roundedCornerRadius 16
+int styleable GenericDraweeHierarchy_roundingBorderColor 23
+int styleable GenericDraweeHierarchy_roundingBorderPadding 24
+int styleable GenericDraweeHierarchy_roundingBorderWidth 22
+int styleable GenericDraweeHierarchy_viewAspectRatio 1
+int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010048, 0x7f010049, 0x7f01004a }
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 8
+int styleable LinearLayoutCompat_measureWithLargestChild 6
+int styleable LinearLayoutCompat_showDividers 7
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
+int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
+int styleable MenuGroup_android_checkableBehavior 5
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 2
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e }
+int styleable MenuItem_actionLayout 14
+int styleable MenuItem_actionProviderClass 16
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_showAsAction 13
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004f }
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_preserveIconSpacing 7
+int[] styleable PopupWindow { 0x01010176, 0x7f010050 }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_overlapAnchor 1
+int[] styleable PopupWindowBackgroundState { 0x7f010051 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 3
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 1
+int styleable SearchView_closeIcon 8
+int styleable SearchView_commitIcon 13
+int styleable SearchView_defaultQueryHint 7
+int styleable SearchView_goIcon 9
+int styleable SearchView_iconifiedByDefault 5
+int styleable SearchView_layout 4
+int styleable SearchView_queryBackground 15
+int styleable SearchView_queryHint 6
+int styleable SearchView_searchHintIcon 11
+int styleable SearchView_searchIcon 10
+int styleable SearchView_submitBackground 16
+int styleable SearchView_suggestionRowLayout 14
+int styleable SearchView_voiceIcon 12
+int[] styleable SimpleDraweeView { 0x7f01005f, 0x7f010060 }
+int styleable SimpleDraweeView_actualImageResource 1
+int styleable SimpleDraweeView_actualImageUri 0
+int[] styleable Spinner { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
+int styleable Spinner_android_dropDownWidth 2
+int styleable Spinner_android_popupBackground 0
+int styleable Spinner_android_prompt 1
+int styleable Spinner_popupTheme 3
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067 }
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 9
+int styleable SwitchCompat_splitTrack 8
+int styleable SwitchCompat_switchMinWidth 6
+int styleable SwitchCompat_switchPadding 7
+int styleable SwitchCompat_switchTextAppearance 5
+int styleable SwitchCompat_thumbTextPadding 4
+int styleable SwitchCompat_track 3
+int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010024 }
+int styleable TextAppearance_android_shadowColor 4
+int styleable TextAppearance_android_shadowDx 5
+int styleable TextAppearance_android_shadowDy 6
+int styleable TextAppearance_android_shadowRadius 7
+int styleable TextAppearance_android_textColor 3
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_textStyle 2
+int styleable TextAppearance_android_typeface 1
+int styleable TextAppearance_textAllCaps 8
+int[] styleable TextStyle { 0x01010034, 0x01010095, 0x01010097, 0x01010098, 0x010100ab, 0x01010153, 0x0101015d, 0x01010161, 0x01010162, 0x01010163, 0x01010164 }
+int styleable TextStyle_android_ellipsize 4
+int styleable TextStyle_android_maxLines 5
+int styleable TextStyle_android_shadowColor 7
+int styleable TextStyle_android_shadowDx 8
+int styleable TextStyle_android_shadowDy 9
+int styleable TextStyle_android_shadowRadius 10
+int styleable TextStyle_android_singleLine 6
+int styleable TextStyle_android_textAppearance 0
+int styleable TextStyle_android_textColor 3
+int styleable TextStyle_android_textSize 1
+int styleable TextStyle_android_textStyle 2
+int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1 }
+int styleable Theme_actionBarDivider 23
+int styleable Theme_actionBarItemBackground 24
+int styleable Theme_actionBarPopupTheme 17
+int styleable Theme_actionBarSize 22
+int styleable Theme_actionBarSplitStyle 19
+int styleable Theme_actionBarStyle 18
+int styleable Theme_actionBarTabBarStyle 13
+int styleable Theme_actionBarTabStyle 12
+int styleable Theme_actionBarTabTextStyle 14
+int styleable Theme_actionBarTheme 20
+int styleable Theme_actionBarWidgetTheme 21
+int styleable Theme_actionButtonStyle 49
+int styleable Theme_actionDropDownStyle 45
+int styleable Theme_actionMenuTextAppearance 25
+int styleable Theme_actionMenuTextColor 26
+int styleable Theme_actionModeBackground 29
+int styleable Theme_actionModeCloseButtonStyle 28
+int styleable Theme_actionModeCloseDrawable 31
+int styleable Theme_actionModeCopyDrawable 33
+int styleable Theme_actionModeCutDrawable 32
+int styleable Theme_actionModeFindDrawable 37
+int styleable Theme_actionModePasteDrawable 34
+int styleable Theme_actionModePopupWindowStyle 39
+int styleable Theme_actionModeSelectAllDrawable 35
+int styleable Theme_actionModeShareDrawable 36
+int styleable Theme_actionModeSplitBackground 30
+int styleable Theme_actionModeStyle 27
+int styleable Theme_actionModeWebSearchDrawable 38
+int styleable Theme_actionOverflowButtonStyle 15
+int styleable Theme_actionOverflowMenuStyle 16
+int styleable Theme_activityChooserViewStyle 57
+int styleable Theme_alertDialogButtonGroupStyle 91
+int styleable Theme_alertDialogCenterButtons 92
+int styleable Theme_alertDialogStyle 90
+int styleable Theme_alertDialogTheme 93
+int styleable Theme_android_windowAnimationStyle 1
+int styleable Theme_android_windowIsFloating 0
+int styleable Theme_autoCompleteTextViewStyle 98
+int styleable Theme_borderlessButtonStyle 54
+int styleable Theme_buttonBarButtonStyle 51
+int styleable Theme_buttonBarNegativeButtonStyle 96
+int styleable Theme_buttonBarNeutralButtonStyle 97
+int styleable Theme_buttonBarPositiveButtonStyle 95
+int styleable Theme_buttonBarStyle 50
+int styleable Theme_buttonStyle 99
+int styleable Theme_buttonStyleSmall 100
+int styleable Theme_checkboxStyle 101
+int styleable Theme_checkedTextViewStyle 102
+int styleable Theme_colorAccent 83
+int styleable Theme_colorButtonNormal 87
+int styleable Theme_colorControlActivated 85
+int styleable Theme_colorControlHighlight 86
+int styleable Theme_colorControlNormal 84
+int styleable Theme_colorPrimary 81
+int styleable Theme_colorPrimaryDark 82
+int styleable Theme_colorSwitchThumbNormal 88
+int styleable Theme_controlBackground 89
+int styleable Theme_dialogPreferredPadding 43
+int styleable Theme_dialogTheme 42
+int styleable Theme_dividerHorizontal 56
+int styleable Theme_dividerVertical 55
+int styleable Theme_dropDownListViewStyle 73
+int styleable Theme_dropdownListPreferredItemHeight 46
+int styleable Theme_editTextBackground 63
+int styleable Theme_editTextColor 62
+int styleable Theme_editTextStyle 103
+int styleable Theme_homeAsUpIndicator 48
+int styleable Theme_listChoiceBackgroundIndicator 80
+int styleable Theme_listDividerAlertDialog 44
+int styleable Theme_listPopupWindowStyle 74
+int styleable Theme_listPreferredItemHeight 68
+int styleable Theme_listPreferredItemHeightLarge 70
+int styleable Theme_listPreferredItemHeightSmall 69
+int styleable Theme_listPreferredItemPaddingLeft 71
+int styleable Theme_listPreferredItemPaddingRight 72
+int styleable Theme_panelBackground 77
+int styleable Theme_panelMenuListTheme 79
+int styleable Theme_panelMenuListWidth 78
+int styleable Theme_popupMenuStyle 60
+int styleable Theme_popupWindowStyle 61
+int styleable Theme_radioButtonStyle 104
+int styleable Theme_ratingBarStyle 105
+int styleable Theme_searchViewStyle 67
+int styleable Theme_selectableItemBackground 52
+int styleable Theme_selectableItemBackgroundBorderless 53
+int styleable Theme_spinnerDropDownItemStyle 47
+int styleable Theme_spinnerStyle 106
+int styleable Theme_switchStyle 107
+int styleable Theme_textAppearanceLargePopupMenu 40
+int styleable Theme_textAppearanceListItem 75
+int styleable Theme_textAppearanceListItemSmall 76
+int styleable Theme_textAppearanceSearchResultSubtitle 65
+int styleable Theme_textAppearanceSearchResultTitle 64
+int styleable Theme_textAppearanceSmallPopupMenu 41
+int styleable Theme_textColorAlertDialogListItem 94
+int styleable Theme_textColorSearchUrl 66
+int styleable Theme_toolbarNavigationButtonStyle 59
+int styleable Theme_toolbarStyle 58
+int styleable Theme_windowActionBar 2
+int styleable Theme_windowActionBarOverlay 4
+int styleable Theme_windowActionModeOverlay 5
+int styleable Theme_windowFixedHeightMajor 9
+int styleable Theme_windowFixedHeightMinor 7
+int styleable Theme_windowFixedWidthMajor 6
+int styleable Theme_windowFixedWidthMinor 8
+int styleable Theme_windowMinWidthMajor 10
+int styleable Theme_windowMinWidthMinor 11
+int styleable Theme_windowNoTitle 3
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_collapseContentDescription 19
+int styleable Toolbar_collapseIcon 18
+int styleable Toolbar_contentInsetEnd 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 5
+int styleable Toolbar_logo 4
+int styleable Toolbar_logoDescription 22
+int styleable Toolbar_maxButtonHeight 17
+int styleable Toolbar_navigationContentDescription 21
+int styleable Toolbar_navigationIcon 20
+int styleable Toolbar_popupTheme 9
+int styleable Toolbar_subtitle 3
+int styleable Toolbar_subtitleTextAppearance 11
+int styleable Toolbar_subtitleTextColor 24
+int styleable Toolbar_title 2
+int styleable Toolbar_titleMarginBottom 16
+int styleable Toolbar_titleMarginEnd 14
+int styleable Toolbar_titleMarginStart 13
+int styleable Toolbar_titleMarginTop 15
+int styleable Toolbar_titleMargins 12
+int styleable Toolbar_titleTextAppearance 10
+int styleable Toolbar_titleTextColor 23
+int[] styleable View { 0x01010000, 0x010100da, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3 }
+int styleable View_android_focusable 1
+int styleable View_android_theme 0
+int styleable View_paddingEnd 3
+int styleable View_paddingStart 2
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100e4, 0x7f0100e5 }
+int styleable ViewBackgroundHelper_android_background 0
+int styleable ViewBackgroundHelper_backgroundTint 1
+int styleable ViewBackgroundHelper_backgroundTintMode 2
+int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
+int styleable ViewStubCompat_android_id 0
+int styleable ViewStubCompat_android_inflatedId 2
+int styleable ViewStubCompat_android_layout 1
+int xml preferences 0x7f060000
diff --git a/android/app/build/intermediates/transforms/dex/debug/folders/1000/1f/main/classes.dex b/android/app/build/intermediates/transforms/dex/debug/folders/1000/1f/main/classes.dex
new file mode 100644
index 00000000..705623d5
Binary files /dev/null and b/android/app/build/intermediates/transforms/dex/debug/folders/1000/1f/main/classes.dex differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/arm64-v8a/libimagepipeline.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/arm64-v8a/libimagepipeline.so
new file mode 100644
index 00000000..d23b724e
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/arm64-v8a/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libfb.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libfb.so
new file mode 100644
index 00000000..d056c0d1
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libfb.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libfolly_json.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libfolly_json.so
new file mode 100644
index 00000000..4455f5c8
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libfolly_json.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog.so
new file mode 100644
index 00000000..b8b0d906
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog_init.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog_init.so
new file mode 100644
index 00000000..eee139f8
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog_init.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libgnustl_shared.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libgnustl_shared.so
new file mode 100644
index 00000000..81f0ce19
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libgnustl_shared.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libicu_common.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libicu_common.so
new file mode 100644
index 00000000..e92e859c
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libicu_common.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libimagepipeline.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libimagepipeline.so
new file mode 100644
index 00000000..e2b23173
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libjsc.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libjsc.so
new file mode 100644
index 00000000..c72d14e9
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libjsc.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libprivatedata.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libprivatedata.so
new file mode 100644
index 00000000..8ae0f8b6
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libprivatedata.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libreactnativejni.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libreactnativejni.so
new file mode 100644
index 00000000..57a69961
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libreactnativejni.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libyoga.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libyoga.so
new file mode 100644
index 00000000..942b4cc8
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi-v7a/libyoga.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi/libicu_common.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi/libicu_common.so
new file mode 100644
index 00000000..828015d0
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi/libicu_common.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi/libimagepipeline.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi/libimagepipeline.so
new file mode 100644
index 00000000..1eeeb182
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/armeabi/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libfb.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libfb.so
new file mode 100644
index 00000000..bb4ff0a0
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libfb.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libfolly_json.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libfolly_json.so
new file mode 100644
index 00000000..f54ffcdc
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libfolly_json.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libglog.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libglog.so
new file mode 100644
index 00000000..558ee903
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libglog.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libglog_init.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libglog_init.so
new file mode 100644
index 00000000..5145af6a
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libglog_init.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libgnustl_shared.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libgnustl_shared.so
new file mode 100644
index 00000000..bb9d5238
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libgnustl_shared.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libicu_common.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libicu_common.so
new file mode 100644
index 00000000..802ff293
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libicu_common.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libimagepipeline.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libimagepipeline.so
new file mode 100644
index 00000000..45eb0f30
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libjsc.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libjsc.so
new file mode 100644
index 00000000..ea95c918
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libjsc.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libprivatedata.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libprivatedata.so
new file mode 100644
index 00000000..4553b510
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libprivatedata.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libreactnativejni.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libreactnativejni.so
new file mode 100644
index 00000000..9135b36f
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libreactnativejni.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libyoga.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libyoga.so
new file mode 100644
index 00000000..9f64a48c
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86/libyoga.so differ
diff --git a/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86_64/libimagepipeline.so b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86_64/libimagepipeline.so
new file mode 100644
index 00000000..442555a7
Binary files /dev/null and b/android/app/build/intermediates/transforms/mergeJniLibs/debug/folders/2000/1f/main/lib/x86_64/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/arm64-v8a/libimagepipeline.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/arm64-v8a/libimagepipeline.so
new file mode 100755
index 00000000..d23b724e
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/arm64-v8a/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libfb.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libfb.so
new file mode 100755
index 00000000..d056c0d1
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libfb.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libfolly_json.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libfolly_json.so
new file mode 100755
index 00000000..4455f5c8
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libfolly_json.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog.so
new file mode 100755
index 00000000..b8b0d906
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog_init.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog_init.so
new file mode 100755
index 00000000..eee139f8
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libglog_init.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libgnustl_shared.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libgnustl_shared.so
new file mode 100755
index 00000000..81f0ce19
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libgnustl_shared.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libicu_common.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libicu_common.so
new file mode 100755
index 00000000..e92e859c
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libicu_common.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libimagepipeline.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libimagepipeline.so
new file mode 100755
index 00000000..e2b23173
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libjsc.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libjsc.so
new file mode 100755
index 00000000..c72d14e9
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libjsc.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libprivatedata.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libprivatedata.so
new file mode 100755
index 00000000..8ae0f8b6
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libprivatedata.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libreactnativejni.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libreactnativejni.so
new file mode 100755
index 00000000..57a69961
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libreactnativejni.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libyoga.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libyoga.so
new file mode 100755
index 00000000..942b4cc8
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi-v7a/libyoga.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi/libicu_common.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi/libicu_common.so
new file mode 100755
index 00000000..828015d0
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi/libicu_common.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi/libimagepipeline.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi/libimagepipeline.so
new file mode 100755
index 00000000..1eeeb182
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/armeabi/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libfb.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libfb.so
new file mode 100755
index 00000000..bb4ff0a0
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libfb.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libfolly_json.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libfolly_json.so
new file mode 100755
index 00000000..f54ffcdc
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libfolly_json.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libglog.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libglog.so
new file mode 100755
index 00000000..558ee903
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libglog.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libglog_init.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libglog_init.so
new file mode 100755
index 00000000..5145af6a
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libglog_init.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libgnustl_shared.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libgnustl_shared.so
new file mode 100755
index 00000000..bb9d5238
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libgnustl_shared.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libicu_common.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libicu_common.so
new file mode 100755
index 00000000..802ff293
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libicu_common.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libimagepipeline.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libimagepipeline.so
new file mode 100755
index 00000000..45eb0f30
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libimagepipeline.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libjsc.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libjsc.so
new file mode 100755
index 00000000..ea95c918
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libjsc.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libprivatedata.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libprivatedata.so
new file mode 100755
index 00000000..4553b510
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libprivatedata.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libreactnativejni.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libreactnativejni.so
new file mode 100755
index 00000000..9135b36f
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libreactnativejni.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libyoga.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libyoga.so
new file mode 100755
index 00000000..9f64a48c
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86/libyoga.so differ
diff --git a/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86_64/libimagepipeline.so b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86_64/libimagepipeline.so
new file mode 100755
index 00000000..442555a7
Binary files /dev/null and b/android/app/build/intermediates/transforms/stripDebugSymbol/debug/folders/2000/1f/main/lib/x86_64/libimagepipeline.so differ
diff --git a/android/app/build/outputs/apk/app-debug.apk b/android/app/build/outputs/apk/app-debug.apk
new file mode 100644
index 00000000..d5d17b27
Binary files /dev/null and b/android/app/build/outputs/apk/app-debug.apk differ
diff --git a/android/app/build/outputs/logs/manifest-merger-debug-report.txt b/android/app/build/outputs/logs/manifest-merger-debug-report.txt
new file mode 100644
index 00000000..dd71a3f1
--- /dev/null
+++ b/android/app/build/outputs/logs/manifest-merger-debug-report.txt
@@ -0,0 +1,90 @@
+-- Merging decision tree log ---
+manifest
+ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:1:1-26:12
+ package
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:2:5-25
+ INJECTED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml
+ INJECTED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml
+ android:versionName
+ INJECTED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml
+ INJECTED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml
+ xmlns:android
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:1:11-69
+ android:versionCode
+ INJECTED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml
+ INJECTED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml
+uses-permission#android.permission.INTERNET
+ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:4:5-67
+ android:name
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:4:22-64
+uses-permission#android.permission.SYSTEM_ALERT_WINDOW
+ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:5:5-77
+MERGED from [com.facebook.react:react-native:0.55.4] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/AndroidManifest.xml:11:5-78
+ android:name
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:5:22-75
+application
+ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:7:5-24:19
+MERGED from [com.facebook.react:react-native:0.55.4] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/AndroidManifest.xml:13:5-20
+MERGED from [com.android.support:appcompat-v7:23.0.1] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/AndroidManifest.xml:22:5-20
+MERGED from [com.android.support:support-v4:23.0.1] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:22:5-20
+MERGED from [com.facebook.soloader:soloader:0.1.0] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.soloader/soloader/0.1.0/AndroidManifest.xml:3:3-17
+MERGED from [org.webkit:android-jsc:r174650] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/AndroidManifest.xml:2:3-17
+ android:label
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:9:7-39
+ android:allowBackup
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:11:7-34
+ android:icon
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:10:7-41
+ android:theme
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:12:7-38
+ android:name
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:8:7-38
+activity#com.rntest.MainActivity
+ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:13:7-22:18
+ android:label
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:15:9-41
+ android:windowSoftInputMode
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:17:9-51
+ android:configChanges
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:16:9-79
+ android:name
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:14:9-37
+intent-filter#android.intent.action.MAIN+android.intent.category.LAUNCHER
+ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:18:9-21:25
+action#android.intent.action.MAIN
+ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:19:13-65
+ android:name
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:19:21-62
+category#android.intent.category.LAUNCHER
+ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:20:13-73
+ android:name
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:20:23-70
+activity#com.facebook.react.devsupport.DevSettingsActivity
+ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:23:7-84
+ android:name
+ ADDED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:23:17-81
+uses-sdk
+INJECTED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml reason: use-sdk injection requested
+MERGED from [com.facebook.react:react-native:0.55.4] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.55.4/AndroidManifest.xml:7:5-9:41
+MERGED from [com.android.support:appcompat-v7:23.0.1] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/AndroidManifest.xml:20:5-43
+MERGED from [com.android.support:support-v4:23.0.1] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:20:5-43
+MERGED from [com.facebook.fbui.textlayoutbuilder:textlayoutbuilder:1.0.0] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.fbui.textlayoutbuilder/textlayoutbuilder/1.0.0/AndroidManifest.xml:14:5-16:41
+MERGED from [com.facebook.fresco:fresco:1.3.0] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/1.3.0/AndroidManifest.xml:5:5-7:41
+MERGED from [com.facebook.fresco:drawee:1.3.0] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.3.0/AndroidManifest.xml:5:5-7:41
+MERGED from [com.facebook.fresco:imagepipeline-okhttp3:1.3.0] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp3/1.3.0/AndroidManifest.xml:5:5-7:41
+MERGED from [com.facebook.fresco:imagepipeline:1.3.0] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/1.3.0/AndroidManifest.xml:5:5-7:41
+MERGED from [com.facebook.fresco:imagepipeline-base:1.3.0] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-base/1.3.0/AndroidManifest.xml:5:5-7:41
+MERGED from [com.facebook.fresco:fbcore:1.3.0] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/1.3.0/AndroidManifest.xml:5:5-7:41
+MERGED from [com.facebook.soloader:soloader:0.1.0] /Users/ben/Documents/dev/react-native-masked-text/android/app/build/intermediates/exploded-aar/com.facebook.soloader/soloader/0.1.0/AndroidManifest.xml:2:3-70
+ android:targetSdkVersion
+ INJECTED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml
+ INJECTED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml
+ android:minSdkVersion
+ INJECTED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml
+ INJECTED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml
+android:uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
+IMPLIED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:1:1-26:12 reason: org.webkit.android_jsc has a targetSdkVersion < 4
+android:uses-permission#android.permission.READ_PHONE_STATE
+IMPLIED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:1:1-26:12 reason: org.webkit.android_jsc has a targetSdkVersion < 4
+android:uses-permission#android.permission.READ_EXTERNAL_STORAGE
+IMPLIED from /Users/ben/Documents/dev/react-native-masked-text/android/app/src/main/AndroidManifest.xml:1:1-26:12 reason: org.webkit.android_jsc requested WRITE_EXTERNAL_STORAGE
diff --git a/android/app/proguard-rules.pro b/android/app/proguard-rules.pro
new file mode 100644
index 00000000..6e8516c8
--- /dev/null
+++ b/android/app/proguard-rules.pro
@@ -0,0 +1,70 @@
+# 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:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Disabling obfuscation is useful if you collect stack traces from production crashes
+# (unless you are using a system that supports de-obfuscate the stack traces).
+-dontobfuscate
+
+# React Native
+
+# Keep our interfaces so they can be used by other ProGuard rules.
+# See http://sourceforge.net/p/proguard/bugs/466/
+-keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip
+-keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters
+-keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip
+
+# Do not strip any method/class that is annotated with @DoNotStrip
+-keep @com.facebook.proguard.annotations.DoNotStrip class *
+-keep @com.facebook.common.internal.DoNotStrip class *
+-keepclassmembers class * {
+ @com.facebook.proguard.annotations.DoNotStrip *;
+ @com.facebook.common.internal.DoNotStrip *;
+}
+
+-keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * {
+ void set*(***);
+ *** get*();
+}
+
+-keep class * extends com.facebook.react.bridge.JavaScriptModule { *; }
+-keep class * extends com.facebook.react.bridge.NativeModule { *; }
+-keepclassmembers,includedescriptorclasses class * { native ; }
+-keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; }
+-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; }
+-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; }
+
+-dontwarn com.facebook.react.**
+
+# TextLayoutBuilder uses a non-public Android constructor within StaticLayout.
+# See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details.
+-dontwarn android.text.StaticLayout
+
+# okhttp
+
+-keepattributes Signature
+-keepattributes *Annotation*
+-keep class okhttp3.** { *; }
+-keep interface okhttp3.** { *; }
+-dontwarn okhttp3.**
+
+# okio
+
+-keep class sun.misc.Unsafe { *; }
+-dontwarn java.nio.file.*
+-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
+-dontwarn okio.**
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 00000000..fdaad1e7
--- /dev/null
+++ b/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/app/src/main/java/com/rntest/MainActivity.java b/android/app/src/main/java/com/rntest/MainActivity.java
new file mode 100644
index 00000000..d6c29a6f
--- /dev/null
+++ b/android/app/src/main/java/com/rntest/MainActivity.java
@@ -0,0 +1,15 @@
+package com.rntest;
+
+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 "RnTest";
+ }
+}
diff --git a/android/app/src/main/java/com/rntest/MainApplication.java b/android/app/src/main/java/com/rntest/MainApplication.java
new file mode 100644
index 00000000..2886ae96
--- /dev/null
+++ b/android/app/src/main/java/com/rntest/MainApplication.java
@@ -0,0 +1,45 @@
+package com.rntest;
+
+import android.app.Application;
+
+import com.facebook.react.ReactApplication;
+import com.facebook.react.ReactNativeHost;
+import com.facebook.react.ReactPackage;
+import com.facebook.react.shell.MainReactPackage;
+import com.facebook.soloader.SoLoader;
+
+import java.util.Arrays;
+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 getPackages() {
+ return Arrays.asList(
+ new MainReactPackage()
+ );
+ }
+
+ @Override
+ protected String getJSMainModuleName() {
+ return "index";
+ }
+ };
+
+ @Override
+ public ReactNativeHost getReactNativeHost() {
+ return mReactNativeHost;
+ }
+
+ @Override
+ public void onCreate() {
+ super.onCreate();
+ SoLoader.init(this, /* native exopackage */ false);
+ }
+}
diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 00000000..cde69bcc
Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 00000000..c133a0cb
Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 00000000..bfa42f0e
Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 00000000..324e72cd
Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml
new file mode 100644
index 00000000..e13ba95a
--- /dev/null
+++ b/android/app/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ RnTest
+
diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml
new file mode 100644
index 00000000..319eb0ca
--- /dev/null
+++ b/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
diff --git a/android/build.gradle b/android/build.gradle
new file mode 100644
index 00000000..eed9972b
--- /dev/null
+++ b/android/build.gradle
@@ -0,0 +1,24 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+
+buildscript {
+ repositories {
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:2.2.3'
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+allprojects {
+ repositories {
+ mavenLocal()
+ jcenter()
+ maven {
+ // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
+ url "$rootDir/../node_modules/react-native/android"
+ }
+ }
+}
diff --git a/android/build/intermediates/dex-cache/cache.xml b/android/build/intermediates/dex-cache/cache.xml
new file mode 100644
index 00000000..ce838b5c
--- /dev/null
+++ b/android/build/intermediates/dex-cache/cache.xml
@@ -0,0 +1,194 @@
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
diff --git a/android/gradle.properties b/android/gradle.properties
new file mode 100644
index 00000000..1fd964e9
--- /dev/null
+++ b/android/gradle.properties
@@ -0,0 +1,20 @@
+# 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
+
+android.useDeprecatedNdk=true
diff --git a/android/gradle/wrapper/gradle-wrapper.jar b/android/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 00000000..b5166dad
Binary files /dev/null and b/android/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 00000000..dbdc05d2
--- /dev/null
+++ b/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,5 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
diff --git a/android/gradlew b/android/gradlew
new file mode 100755
index 00000000..91a7e269
--- /dev/null
+++ b/android/gradlew
@@ -0,0 +1,164 @@
+#!/usr/bin/env bash
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn ( ) {
+ echo "$*"
+}
+
+die ( ) {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+esac
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched.
+if $cygwin ; then
+ [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+fi
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >&-
+APP_HOME="`pwd -P`"
+cd "$SAVED" >&-
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
+function splitJvmOpts() {
+ JVM_OPTS=("$@")
+}
+eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
+JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
+
+exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
diff --git a/android/gradlew.bat b/android/gradlew.bat
new file mode 100644
index 00000000..aec99730
--- /dev/null
+++ b/android/gradlew.bat
@@ -0,0 +1,90 @@
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS=
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto init
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto init
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:init
+@rem Get command-line arguments, handling Windowz variants
+
+if not "%OS%" == "Windows_NT" goto win9xME_args
+if "%@eval[2+2]" == "4" goto 4NT_args
+
+:win9xME_args
+@rem Slurp the command line arguments.
+set CMD_LINE_ARGS=
+set _SKIP=2
+
+:win9xME_args_slurp
+if "x%~1" == "x" goto execute
+
+set CMD_LINE_ARGS=%*
+goto execute
+
+:4NT_args
+@rem Get arguments from the 4NT Shell from JP Software
+set CMD_LINE_ARGS=%$
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/android/keystores/BUCK b/android/keystores/BUCK
new file mode 100644
index 00000000..88e4c31b
--- /dev/null
+++ b/android/keystores/BUCK
@@ -0,0 +1,8 @@
+keystore(
+ name = "debug",
+ properties = "debug.keystore.properties",
+ store = "debug.keystore",
+ visibility = [
+ "PUBLIC",
+ ],
+)
diff --git a/android/keystores/debug.keystore.properties b/android/keystores/debug.keystore.properties
new file mode 100644
index 00000000..121bfb49
--- /dev/null
+++ b/android/keystores/debug.keystore.properties
@@ -0,0 +1,4 @@
+key.store=debug.keystore
+key.alias=androiddebugkey
+key.store.password=android
+key.alias.password=android
diff --git a/android/local.properties b/android/local.properties
new file mode 100644
index 00000000..51fcdda8
--- /dev/null
+++ b/android/local.properties
@@ -0,0 +1,9 @@
+## This file must *NOT* be checked into Version Control Systems,
+# as it contains information specific to your local configuration.
+#
+# Location of the SDK. This is only used by Gradle.
+# For customization when using a Version Control System, please read the
+# header note.
+#Sat Sep 08 05:31:10 BRT 2018
+ndk.dir=/Users/ben/Library/Android/sdk/ndk-bundle
+sdk.dir=/Users/ben/Library/Android/sdk
diff --git a/android/settings.gradle b/android/settings.gradle
new file mode 100644
index 00000000..36d5efe8
--- /dev/null
+++ b/android/settings.gradle
@@ -0,0 +1,3 @@
+rootProject.name = 'RnTest'
+
+include ':app'
diff --git a/app.json b/app.json
new file mode 100644
index 00000000..e203a8f6
--- /dev/null
+++ b/app.json
@@ -0,0 +1,4 @@
+{
+ "name": "RnTest",
+ "displayName": "RnTest"
+}
\ No newline at end of file
diff --git a/dist/index.js b/dist/index.js
deleted file mode 100644
index 4edbe3a2..00000000
--- a/dist/index.js
+++ /dev/null
@@ -1,7 +0,0 @@
-var _maskService=require('./lib/mask-service');var _maskService2=_interopRequireDefault(_maskService);
-var _textInputMask=require('./lib/text-input-mask');var _textInputMask2=_interopRequireDefault(_textInputMask);
-var _textMask=require('./lib/text-mask');var _textMask2=_interopRequireDefault(_textMask);function _interopRequireDefault(obj){return obj&&obj.__esModule?obj:{default:obj};}
-
-module.exports.MaskService=_maskService2.default;
-module.exports.TextInputMask=_textInputMask2.default;
-module.exports.TextMask=_textMask2.default;
\ No newline at end of file
diff --git a/dist/lib/base-text-component.js b/dist/lib/base-text-component.js
index ec2342fd..db3a1364 100644
--- a/dist/lib/base-text-component.js
+++ b/dist/lib/base-text-component.js
@@ -1,108 +1 @@
-Object.defineProperty(exports,"__esModule",{value:true});var _createClass=function(){function defineProperties(target,props){for(var i=0;icentsLength?opts.precision:centsLength;
-
-cents=(cents+centsValue).slice(-centsSliced);
-}
-
-var unitToApply=opts.unit[opts.unit.length-1]===' '?
-opts.unit.substring(0,opts.unit.length-1):
-
-opts.unit;
-var output=unitToApply+masked+opts.separator+cents+opts.suffixUnit;
-return output.replace(clearSeparator,"");
-};
-
-VMasker.toPattern=function(value,opts){
-var pattern=typeof opts==='object'?opts.pattern:opts,
-patternChars=pattern.replace(/\W/g,''),
-output=pattern.split(""),
-values=value.toString().replace(/\W/g,""),
-charsValues=values.replace(/\W/g,''),
-index=0,
-i,
-outputLength=output.length,
-placeholder=typeof opts==='object'?opts.placeholder:undefined;
-
-
-for(i=0;i=values.length){
-if(patternChars.length==charsValues.length){
-return output.join("");
-}else
-if(placeholder!==undefined&&patternChars.length>charsValues.length){
-return addPlaceholdersToOutput(output,i,placeholder).join("");
-}else
-{
-break;
-}
-}else
-
-{
-if(output[i]===DIGIT&&values[index].match(/[0-9]/)||
-output[i]===ALPHA&&values[index].match(/[a-zA-Z]/)||
-output[i]===ALPHANUM&&values[index].match(/[0-9a-zA-Z]/)){
-output[i]=values[index++];
-}else if(output[i]===DIGIT||output[i]===ALPHA||output[i]===ALPHANUM){
-if(placeholder!==undefined){
-return addPlaceholdersToOutput(output,i,placeholder).join("");
-}else
-{
-return output.slice(0,i).join("");
-}
-}
-}
-}
-return output.join("").substr(0,i);
-};
-
-VMasker.toNumber=function(value){
-return value.toString().replace(/(?!^-)[^0-9]/g,"");
-};
-
-VMasker.toAlphaNumeric=function(value){
-return value.toString().replace(/[^a-z0-9 ]+/i,"");
-};
-
-return VMasker;
-});
\ No newline at end of file
+(function(root,factory){if(typeof define==='function'&&define.amd){define(factory);}else if(typeof exports==='object'){module.exports=factory();}else{root.VMasker=factory();}})(this,function(){var DIGIT="9",ALPHA="A",ALPHANUM="S",BY_PASS_KEYS=[9,16,17,18,36,37,38,39,40,91,92,93],isAllowedKeyCode=function isAllowedKeyCode(keyCode){for(var i=0,len=BY_PASS_KEYS.length;icentsLength?opts.precision:centsLength;cents=(cents+centsValue).slice(-centsSliced);}var unitToApply=opts.unit[opts.unit.length-1]===' '?opts.unit.substring(0,opts.unit.length-1):opts.unit;var output=unitToApply+masked+opts.separator+cents+opts.suffixUnit;return output.replace(clearSeparator,"");};VMasker.toPattern=function(value,opts){var pattern=typeof opts==='object'?opts.pattern:opts,patternChars=pattern.replace(/\W/g,''),output=pattern.split(""),values=value.toString().replace(/\W/g,""),charsValues=values.replace(/\W/g,''),index=0,i,outputLength=output.length,placeholder=typeof opts==='object'?opts.placeholder:undefined;for(i=0;i=values.length){if(patternChars.length==charsValues.length){return output.join("");}else if(placeholder!==undefined&&patternChars.length>charsValues.length){return addPlaceholdersToOutput(output,i,placeholder).join("");}else{break;}}else{if(output[i]===DIGIT&&values[index].match(/[0-9]/)||output[i]===ALPHA&&values[index].match(/[a-zA-Z]/)||output[i]===ALPHANUM&&values[index].match(/[0-9a-zA-Z]/)){output[i]=values[index++];}else if(output[i]===DIGIT||output[i]===ALPHA||output[i]===ALPHANUM){if(placeholder!==undefined){return addPlaceholdersToOutput(output,i,placeholder).join("");}else{return output.slice(0,i).join("");}}}}return output.join("").substr(0,i);};VMasker.toNumber=function(value){return value.toString().replace(/(?!^-)[^0-9]/g,"");};VMasker.toAlphaNumeric=function(value){return value.toString().replace(/[^a-z0-9 ]+/i,"");};return VMasker;});
\ No newline at end of file
diff --git a/dist/lib/mask-resolver.js b/dist/lib/mask-resolver.js
index f35ec2c9..1d10f727 100644
--- a/dist/lib/mask-resolver.js
+++ b/dist/lib/mask-resolver.js
@@ -1,19 +1 @@
-Object.defineProperty(exports,"__esModule",{value:true});var _createClass=function(){function defineProperties(target,props){for(var i=0;i=9;
-}else
-{
-return numbers.length>=9;
-}
-}();
-
-if(use9DigitMask){
-mask=PHONE_9_MASK;
-}
-
-if(mergedSettings.withDDD){
-mask=''+mergedSettings.dddMask+mask;
-}
-
-return mask;
-}}],[{key:'getType',value:function getType(){return'cel-phone';}}]);return CelPhoneMask;}(_base2.default);exports.default=CelPhoneMask;
\ No newline at end of file
+Object.defineProperty(exports,"__esModule",{value:true});var _createClass=function(){function defineProperties(target,props){for(var i=0;i=9;}else{return numbers.length>=9;}}();if(use9DigitMask){mask=PHONE_9_MASK;}if(mergedSettings.withDDD){mask=''+mergedSettings.dddMask+mask;}return mask;}}],[{key:'getType',value:function getType(){return'cel-phone';}}]);return CelPhoneMask;}(_base2.default);exports.default=CelPhoneMask;
\ No newline at end of file
diff --git a/dist/lib/masks/cnpj.mask.js b/dist/lib/masks/cnpj.mask.js
index bd7a79f6..cf4f35d2 100644
--- a/dist/lib/masks/cnpj.mask.js
+++ b/dist/lib/masks/cnpj.mask.js
@@ -1,41 +1 @@
-Object.defineProperty(exports,"__esModule",{value:true});var _createClass=function(){function defineProperties(target,props){for(var i=0;i0?cnpj.charAt(i-1)*valida[i]:0;
-dig2+=cnpj.charAt(i)*valida[i];
-}
-dig1=dig1%11<2?0:11-dig1%11;
-dig2=dig2%11<2?0:11-dig2%11;
-
-return dig1*10+dig2==digito;
-};var
-
-CnpjMask=function(_BaseMask){_inherits(CnpjMask,_BaseMask);function CnpjMask(){_classCallCheck(this,CnpjMask);return _possibleConstructorReturn(this,(CnpjMask.__proto__||Object.getPrototypeOf(CnpjMask)).apply(this,arguments));}_createClass(CnpjMask,[{key:'getValue',value:function getValue(
-
-
-
-
-value,settings){
-return this.getVMasker().toPattern(value,CNPJ_MASK);
-}},{key:'getRawValue',value:function getRawValue(
-
-maskedValue,settings){
-return _get(CnpjMask.prototype.__proto__||Object.getPrototypeOf(CnpjMask.prototype),'removeNotNumbers',this).call(this,maskedValue);
-}},{key:'validate',value:function validate(
-
-value,settings){
-var isEmpty=(value||'').trim().length===0;
-return!isEmpty&&validateCnpj(value);
-}}],[{key:'getType',value:function getType(){return'cnpj';}}]);return CnpjMask;}(_base2.default);exports.default=CnpjMask;
\ No newline at end of file
+Object.defineProperty(exports,"__esModule",{value:true});exports.validateCnpj=exports.CNPJ_MASK=undefined;var _createClass=function(){function defineProperties(target,props){for(var i=0;i0?cnpj.charAt(i-1)*valida[i]:0;dig2+=cnpj.charAt(i)*valida[i];}dig1=dig1%11<2?0:11-dig1%11;dig2=dig2%11<2?0:11-dig2%11;return dig1*10+dig2==digito;};var CnpjMask=function(_BaseMask){_inherits(CnpjMask,_BaseMask);function CnpjMask(){_classCallCheck(this,CnpjMask);return _possibleConstructorReturn(this,(CnpjMask.__proto__||Object.getPrototypeOf(CnpjMask)).apply(this,arguments));}_createClass(CnpjMask,[{key:'getValue',value:function getValue(value,settings){return this.getVMasker().toPattern(value,CNPJ_MASK);}},{key:'getRawValue',value:function getRawValue(maskedValue,settings){return _get(CnpjMask.prototype.__proto__||Object.getPrototypeOf(CnpjMask.prototype),'removeNotNumbers',this).call(this,maskedValue);}},{key:'validate',value:function validate(value,settings){var isEmpty=(value||'').trim().length===0;return!isEmpty&&validateCnpj(value);}}],[{key:'getType',value:function getType(){return'cnpj';}}]);return CnpjMask;}(_base2.default);exports.default=CnpjMask;
\ No newline at end of file
diff --git a/dist/lib/masks/cpf-cnpj.mask.js b/dist/lib/masks/cpf-cnpj.mask.js
new file mode 100644
index 00000000..15277b58
--- /dev/null
+++ b/dist/lib/masks/cpf-cnpj.mask.js
@@ -0,0 +1 @@
+Object.defineProperty(exports,"__esModule",{value:true});var _createClass=function(){function defineProperties(target,props){for(var i=0;i11;}},{key:'validate',value:function validate(value,settings){var length=this.getLength(value);var isEmpty=length===0;if(isEmpty){return false;}if(this.isCNPJ(length)){return(0,_cnpj.validateCnpj)(value);}return(0,_cpf.validateCPF)(value);}}],[{key:'getType',value:function getType(){return'cpf-cnpj';}}]);return CpfCnpjMask;}(_base2.default);exports.default=CpfCnpjMask;
\ No newline at end of file
diff --git a/dist/lib/masks/cpf.mask.js b/dist/lib/masks/cpf.mask.js
index 0c5da0f5..812a19cb 100644
--- a/dist/lib/masks/cpf.mask.js
+++ b/dist/lib/masks/cpf.mask.js
@@ -1,82 +1 @@
-Object.defineProperty(exports,"__esModule",{value:true});var _createClass=function(){function defineProperties(target,props){for(var i=0;i0){
-return(
-text.substring(0,index)+
-string+
-text.substring(index,text.length));
-
-}else{
-return string+text;
-}
-}}],[{key:'getType',value:function getType(){return'money';}}]);return MoneyMask;}(_base2.default);exports.default=MoneyMask;
\ No newline at end of file
+Object.defineProperty(exports,"__esModule",{value:true});var _createClass=function(){function defineProperties(target,props){for(var i=0;i0){return text.substring(0,index)+string+text.substring(index,text.length);}else{return string+text;}}}],[{key:'getType',value:function getType(){return'money';}}]);return MoneyMask;}(_base2.default);exports.default=MoneyMask;
\ No newline at end of file
diff --git a/dist/lib/masks/only-numbers.mask.js b/dist/lib/masks/only-numbers.mask.js
index 5bcc8ecf..208bf0cf 100644
--- a/dist/lib/masks/only-numbers.mask.js
+++ b/dist/lib/masks/only-numbers.mask.js
@@ -1,18 +1 @@
-Object.defineProperty(exports,"__esModule",{value:true});var _createClass=function(){function defineProperties(target,props){for(var i=0;i
+ */
+
+import * as React from 'react'
+import { TextInput, TextInputProps } from 'react-native'
// Type prop of TextInputMask.
-type TextInputMaskTypeProp = "credit-card" | "cpf" | "cnpj" | "zip-code" | "only-numbers" | "money" | "cel-phone" | "datetime" | "custom";
+export type TextInputMaskTypeProp =
+ | 'credit-card'
+ | 'cpf'
+ | 'cnpj'
+ | 'zip-code'
+ | 'only-numbers'
+ | 'money'
+ | 'cel-phone'
+ | 'datetime'
+ | 'custom'
// Option prop of TextInputMask.
-type TextInputMaskOptionProp = {
- // Money type.
- precision?: number;
- separator?: string;
- delimiter?: string;
- unit?: string;
- suffixUnit?: string;
- zeroCents?: boolean;
-
- // Phone type.
- withDDD?: boolean;
- dddMask?: string;
-
- // Datetime type.
- format?: string;
-
- // Credit card type.
- obfuscated?: boolean;
-};
+export interface TextInputMaskOptionProp {
+ // Money type.
+ precision?: number
+ separator?: string
+ delimiter?: string
+ unit?: string
+ suffixUnit?: string
+ zeroCents?: boolean
+
+ // Phone type.
+ withDDD?: boolean
+ dddMask?: string
+
+ // Datetime type.
+ format?: string
+
+ // Credit card type.
+ obfuscated?: boolean
+
+ // Custom type.
+ mask?: string
+ validator?: (value: string, settings: TextInputMaskOptionProp) => boolean
+ getRawValue?: (value: string, settings: TextInputMaskOptionProp) => boolean
+ translation?: { [s: string]: (val: string) => string | null | undefined }
+}
// TextInputMask Props
-interface TextInputMaskProps extends TextInputProps {
- type: TextInputMaskTypeProp;
- options?: TextInputMaskOptionProp;
- checkText?: (previous: string, next: string) => boolean;
- onChangeText?: (text: string) => void;
+export interface TextInputMaskProps extends TextInputProps {
+ type: TextInputMaskTypeProp
+ options?: TextInputMaskOptionProp
+ checkText?: (previous: string, next: string) => boolean
+ onChangeText?: (text: string) => void
+ refInput?: (ref: any) => void
}
// TextInputMask Component
-export declare class TextInputMask extends React.Component {}
+export class TextInputMask extends React.Component {}
+
+// TextMask
+export class TextMask extends React.Component {}
// MaskService
-export declare class MaskService {
- static toMask(type: string, value: any, options: TextInputMaskOptionProp): string;
- static isValid(type: string, value: any, options: TextInputMaskOptionProp): boolean;
+export namespace MaskService {
+ function toMask(
+ type: string,
+ value: string,
+ options?: TextInputMaskOptionProp
+ ): string
+ function toRawValue(
+ type: string,
+ maskedValue: string,
+ options?: TextInputMaskOptionProp
+ ): string
+ function isValid(
+ type: string,
+ value: string,
+ options?: TextInputMaskOptionProp
+ ): boolean
}
+
+// TextInputMaskMethods
+export class TextInputMaskMethods {
+ getElement(): TextInput
+ getRawValue(): string
+ isValid(): boolean
+}
+
+// TextInputMasked
+export type TextInputMasked = TextInputMaskMethods | null
+
+// TextMaskMethods
+export class TextMaskMethods {
+ getElement(): TextInput
+}
+
+// TextMaskInstance
+export type TextMaskInstance = TextMaskMethods | null
diff --git a/index.js b/index.js
index 308bf47d..eb97a567 100644
--- a/index.js
+++ b/index.js
@@ -1,7 +1,4 @@
-import MaskService from './lib/mask-service';
-import TextInputMask from './lib/text-input-mask';
-import TextMask from './lib/text-mask';
+import { AppRegistry } from 'react-native';
+import App from './App';
-module.exports.MaskService = MaskService;
-module.exports.TextInputMask = TextInputMask;
-module.exports.TextMask = TextMask;
+AppRegistry.registerComponent('RnTest', () => App);
diff --git a/ios/RnTest-tvOS/Info.plist b/ios/RnTest-tvOS/Info.plist
new file mode 100644
index 00000000..2fb6a11c
--- /dev/null
+++ b/ios/RnTest-tvOS/Info.plist
@@ -0,0 +1,54 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ $(PRODUCT_NAME)
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1
+ LSRequiresIPhoneOS
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIRequiredDeviceCapabilities
+
+ armv7
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UIViewControllerBasedStatusBarAppearance
+
+ NSLocationWhenInUseUsageDescription
+
+ NSAppTransportSecurity
+
+
+ NSExceptionDomains
+
+ localhost
+
+ NSExceptionAllowsInsecureHTTPLoads
+
+
+
+
+
+
diff --git a/ios/RnTest-tvOSTests/Info.plist b/ios/RnTest-tvOSTests/Info.plist
new file mode 100644
index 00000000..886825cc
--- /dev/null
+++ b/ios/RnTest-tvOSTests/Info.plist
@@ -0,0 +1,24 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ $(PRODUCT_NAME)
+ CFBundlePackageType
+ BNDL
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1
+
+
diff --git a/ios/RnTest.xcodeproj/project.pbxproj b/ios/RnTest.xcodeproj/project.pbxproj
new file mode 100644
index 00000000..a8199f20
--- /dev/null
+++ b/ios/RnTest.xcodeproj/project.pbxproj
@@ -0,0 +1,1468 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 46;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };
+ 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };
+ 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };
+ 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
+ 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
+ 00E356F31AD99517003FC87E /* RnTestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* RnTestTests.m */; };
+ 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
+ 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
+ 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
+ 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 */; };
+ 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
+ 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
+ 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 */; };
+ 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
+ 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
+ 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
+ 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
+ 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
+ 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
+ 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
+ 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
+ 2DCD954D1E0B4F2C00145EB5 /* RnTestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* RnTestTests.m */; };
+ 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
+ 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
+ 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
+ ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 134814201AA4EA6300B7C361;
+ remoteInfo = RCTActionSheet;
+ };
+ 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 134814201AA4EA6300B7C361;
+ remoteInfo = RCTGeolocation;
+ };
+ 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
+ remoteInfo = RCTImage;
+ };
+ 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 58B511DB1A9E6C8500147676;
+ remoteInfo = RCTNetwork;
+ };
+ 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
+ remoteInfo = RCTVibration;
+ };
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
+ remoteInfo = RnTest;
+ };
+ 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 134814201AA4EA6300B7C361;
+ remoteInfo = RCTSettings;
+ };
+ 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
+ remoteInfo = RCTWebSocket;
+ };
+ 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
+ remoteInfo = React;
+ };
+ 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
+ remoteInfo = "RnTest-tvOS";
+ };
+ 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = ADD01A681E09402E00F6D226;
+ remoteInfo = "RCTBlob-tvOS";
+ };
+ 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
+ remoteInfo = fishhook;
+ };
+ 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
+ remoteInfo = "fishhook-tvOS";
+ };
+ 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
+ remoteInfo = jsinspector;
+ };
+ 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
+ remoteInfo = "jsinspector-tvOS";
+ };
+ 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
+ remoteInfo = "third-party";
+ };
+ 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
+ remoteInfo = "third-party-tvOS";
+ };
+ 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 139D7E881E25C6D100323FB7;
+ remoteInfo = "double-conversion";
+ };
+ 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 3D383D621EBD27B9005632C8;
+ remoteInfo = "double-conversion-tvOS";
+ };
+ 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
+ remoteInfo = privatedata;
+ };
+ 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
+ remoteInfo = "privatedata-tvOS";
+ };
+ 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
+ remoteInfo = "RCTImage-tvOS";
+ };
+ 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 2D2A28471D9B043800D4039D;
+ remoteInfo = "RCTLinking-tvOS";
+ };
+ 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
+ remoteInfo = "RCTNetwork-tvOS";
+ };
+ 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 2D2A28611D9B046600D4039D;
+ remoteInfo = "RCTSettings-tvOS";
+ };
+ 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
+ remoteInfo = "RCTText-tvOS";
+ };
+ 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 2D2A28881D9B049200D4039D;
+ remoteInfo = "RCTWebSocket-tvOS";
+ };
+ 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
+ remoteInfo = "React-tvOS";
+ };
+ 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
+ remoteInfo = yoga;
+ };
+ 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
+ remoteInfo = "yoga-tvOS";
+ };
+ 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
+ remoteInfo = cxxreact;
+ };
+ 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
+ remoteInfo = "cxxreact-tvOS";
+ };
+ 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
+ remoteInfo = jschelpers;
+ };
+ 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
+ remoteInfo = "jschelpers-tvOS";
+ };
+ 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 134814201AA4EA6300B7C361;
+ remoteInfo = RCTAnimation;
+ };
+ 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
+ remoteInfo = "RCTAnimation-tvOS";
+ };
+ 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 134814201AA4EA6300B7C361;
+ remoteInfo = RCTLinking;
+ };
+ 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 58B5119B1A9E6C1200147676;
+ remoteInfo = RCTText;
+ };
+ ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
+ remoteInfo = RCTBlob;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXFileReference section */
+ 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
+ 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; };
+ 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; };
+ 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; };
+ 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; };
+ 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; };
+ 00E356EE1AD99517003FC87E /* RnTestTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RnTestTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+ 00E356F21AD99517003FC87E /* RnTestTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RnTestTests.m; sourceTree = ""; };
+ 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; };
+ 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; };
+ 13B07F961A680F5B00A75B9A /* RnTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RnTest.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = RnTest/AppDelegate.h; sourceTree = ""; };
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = RnTest/AppDelegate.m; sourceTree = ""; };
+ 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = RnTest/Images.xcassets; sourceTree = ""; };
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = RnTest/Info.plist; sourceTree = ""; };
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = RnTest/main.m; sourceTree = ""; };
+ 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; };
+ 2D02E47B1E0B4A5D006451C7 /* RnTest-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "RnTest-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 2D02E4901E0B4A5D006451C7 /* RnTest-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "RnTest-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
+ 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; };
+ 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; };
+ 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; };
+ ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
+ 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
+ 146834051AC3E58100842450 /* libReact.a in Frameworks */,
+ 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
+ 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
+ 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
+ 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
+ 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
+ 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
+ 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
+ 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
+ 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
+ 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */,
+ 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
+ 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
+ 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
+ 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
+ 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
+ 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
+ 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 00C302B61ABCB90400DB3ED1 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 00C302BC1ABCB91800DB3ED1 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
+ 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 00C302D41ABCB9D200DB3ED1 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
+ 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 00E356EF1AD99517003FC87E /* RnTestTests */ = {
+ isa = PBXGroup;
+ children = (
+ 00E356F21AD99517003FC87E /* RnTestTests.m */,
+ 00E356F01AD99517003FC87E /* Supporting Files */,
+ );
+ path = RnTestTests;
+ sourceTree = "";
+ };
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
+ isa = PBXGroup;
+ children = (
+ 00E356F11AD99517003FC87E /* Info.plist */,
+ );
+ name = "Supporting Files";
+ sourceTree = "";
+ };
+ 139105B71AF99BAD00B5F7CC /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
+ 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 139FDEE71B06529A00C62182 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
+ 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
+ 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */,
+ 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 13B07FAE1A68108700A75B9A /* RnTest */ = {
+ 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 = RnTest;
+ sourceTree = "";
+ };
+ 146834001AC3E56700842450 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 146834041AC3E56700842450 /* libReact.a */,
+ 3DAD3EA31DF850E9000B6D8A /* libReact.a */,
+ 3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
+ 3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
+ 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
+ 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
+ 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
+ 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
+ 2DF0FFDF2056DD460020B375 /* libjsinspector.a */,
+ 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */,
+ 2DF0FFE32056DD460020B375 /* libthird-party.a */,
+ 2DF0FFE52056DD460020B375 /* libthird-party.a */,
+ 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */,
+ 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */,
+ 2DF0FFEB2056DD460020B375 /* libprivatedata.a */,
+ 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ 2D16E6891FA4F8E400B85C8A /* libReact.a */,
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+ 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
+ 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 78C398B11ACF4ADC00677621 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
+ 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
+ isa = PBXGroup;
+ children = (
+ 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
+ 146833FF1AC3E56700842450 /* React.xcodeproj */,
+ 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
+ ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
+ 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
+ 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
+ 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
+ 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
+ 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
+ 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
+ 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
+ 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
+ );
+ name = Libraries;
+ sourceTree = "";
+ };
+ 832341B11AAA6A8300B99B32 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 832341B51AAA6A8300B99B32 /* libRCTText.a */,
+ 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 83CBB9F61A601CBA00E9B192 = {
+ isa = PBXGroup;
+ children = (
+ 13B07FAE1A68108700A75B9A /* RnTest */,
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
+ 00E356EF1AD99517003FC87E /* RnTestTests */,
+ 83CBBA001A601CBA00E9B192 /* Products */,
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
+ );
+ indentWidth = 2;
+ sourceTree = "";
+ tabWidth = 2;
+ usesTabs = 0;
+ };
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 13B07F961A680F5B00A75B9A /* RnTest.app */,
+ 00E356EE1AD99517003FC87E /* RnTestTests.xctest */,
+ 2D02E47B1E0B4A5D006451C7 /* RnTest-tvOS.app */,
+ 2D02E4901E0B4A5D006451C7 /* RnTest-tvOSTests.xctest */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ ADBDB9201DFEBF0600ED6528 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
+ 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 00E356ED1AD99517003FC87E /* RnTestTests */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RnTestTests" */;
+ buildPhases = (
+ 00E356EA1AD99517003FC87E /* Sources */,
+ 00E356EB1AD99517003FC87E /* Frameworks */,
+ 00E356EC1AD99517003FC87E /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
+ );
+ name = RnTestTests;
+ productName = RnTestTests;
+ productReference = 00E356EE1AD99517003FC87E /* RnTestTests.xctest */;
+ productType = "com.apple.product-type.bundle.unit-test";
+ };
+ 13B07F861A680F5B00A75B9A /* RnTest */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RnTest" */;
+ buildPhases = (
+ 13B07F871A680F5B00A75B9A /* Sources */,
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = RnTest;
+ productName = "Hello World";
+ productReference = 13B07F961A680F5B00A75B9A /* RnTest.app */;
+ productType = "com.apple.product-type.application";
+ };
+ 2D02E47A1E0B4A5D006451C7 /* RnTest-tvOS */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RnTest-tvOS" */;
+ buildPhases = (
+ 2D02E4771E0B4A5D006451C7 /* Sources */,
+ 2D02E4781E0B4A5D006451C7 /* Frameworks */,
+ 2D02E4791E0B4A5D006451C7 /* Resources */,
+ 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = "RnTest-tvOS";
+ productName = "RnTest-tvOS";
+ productReference = 2D02E47B1E0B4A5D006451C7 /* RnTest-tvOS.app */;
+ productType = "com.apple.product-type.application";
+ };
+ 2D02E48F1E0B4A5D006451C7 /* RnTest-tvOSTests */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RnTest-tvOSTests" */;
+ buildPhases = (
+ 2D02E48C1E0B4A5D006451C7 /* Sources */,
+ 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
+ 2D02E48E1E0B4A5D006451C7 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
+ );
+ name = "RnTest-tvOSTests";
+ productName = "RnTest-tvOSTests";
+ productReference = 2D02E4901E0B4A5D006451C7 /* RnTest-tvOSTests.xctest */;
+ productType = "com.apple.product-type.bundle.unit-test";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ LastUpgradeCheck = 0610;
+ ORGANIZATIONNAME = Facebook;
+ TargetAttributes = {
+ 00E356ED1AD99517003FC87E = {
+ CreatedOnToolsVersion = 6.2;
+ TestTargetID = 13B07F861A680F5B00A75B9A;
+ };
+ 2D02E47A1E0B4A5D006451C7 = {
+ CreatedOnToolsVersion = 8.2.1;
+ ProvisioningStyle = Automatic;
+ };
+ 2D02E48F1E0B4A5D006451C7 = {
+ CreatedOnToolsVersion = 8.2.1;
+ ProvisioningStyle = Automatic;
+ TestTargetID = 2D02E47A1E0B4A5D006451C7;
+ };
+ };
+ };
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RnTest" */;
+ compatibilityVersion = "Xcode 3.2";
+ developmentRegion = English;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 83CBB9F61A601CBA00E9B192;
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
+ projectDirPath = "";
+ projectReferences = (
+ {
+ ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
+ ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
+ },
+ {
+ ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
+ ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
+ },
+ {
+ ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
+ ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
+ },
+ {
+ ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
+ ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
+ },
+ {
+ ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
+ ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
+ },
+ {
+ ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
+ ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
+ },
+ {
+ ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
+ ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
+ },
+ {
+ ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
+ ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
+ },
+ {
+ ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
+ ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
+ },
+ {
+ ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
+ ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
+ },
+ {
+ ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
+ ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
+ },
+ {
+ ProductGroup = 146834001AC3E56700842450 /* Products */;
+ ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
+ },
+ );
+ projectRoot = "";
+ targets = (
+ 13B07F861A680F5B00A75B9A /* RnTest */,
+ 00E356ED1AD99517003FC87E /* RnTestTests */,
+ 2D02E47A1E0B4A5D006451C7 /* RnTest-tvOS */,
+ 2D02E48F1E0B4A5D006451C7 /* RnTest-tvOSTests */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXReferenceProxy section */
+ 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libRCTActionSheet.a;
+ remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libRCTGeolocation.a;
+ remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libRCTImage.a;
+ remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libRCTNetwork.a;
+ remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libRCTVibration.a;
+ remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libRCTSettings.a;
+ remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libRCTWebSocket.a;
+ remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 146834041AC3E56700842450 /* libReact.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libReact.a;
+ remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libRCTBlob-tvOS.a";
+ remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libfishhook.a;
+ remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libfishhook-tvOS.a";
+ remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libjsinspector.a;
+ remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libjsinspector-tvOS.a";
+ remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 2DF0FFE32056DD460020B375 /* libthird-party.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libthird-party.a";
+ remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 2DF0FFE52056DD460020B375 /* libthird-party.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libthird-party.a";
+ remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libdouble-conversion.a";
+ remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libdouble-conversion.a";
+ remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libprivatedata.a;
+ remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libprivatedata-tvOS.a";
+ remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libRCTImage-tvOS.a";
+ remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libRCTLinking-tvOS.a";
+ remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libRCTNetwork-tvOS.a";
+ remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libRCTSettings-tvOS.a";
+ remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libRCTText-tvOS.a";
+ remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = "libRCTWebSocket-tvOS.a";
+ remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libReact.a;
+ remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libyoga.a;
+ remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libyoga.a;
+ remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libcxxreact.a;
+ remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libcxxreact.a;
+ remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libjschelpers.a;
+ remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libjschelpers.a;
+ remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libRCTAnimation.a;
+ remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libRCTAnimation.a;
+ remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libRCTLinking.a;
+ remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libRCTText.a;
+ remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libRCTBlob.a;
+ remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+/* End PBXReferenceProxy 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 */,
+ );
+ 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";
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 00E356EA1AD99517003FC87E /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 00E356F31AD99517003FC87E /* RnTestTests.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 /* RnTestTests.m in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXTargetDependency section */
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 13B07F861A680F5B00A75B9A /* RnTest */;
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
+ };
+ 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 2D02E47A1E0B4A5D006451C7 /* RnTest-tvOS */;
+ targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
+ };
+/* End PBXTargetDependency section */
+
+/* Begin PBXVariantGroup section */
+ 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 13B07FB21A68108700A75B9A /* Base */,
+ );
+ name = LaunchScreen.xib;
+ path = RnTest;
+ sourceTree = "";
+ };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+ 00E356F61AD99517003FC87E /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ INFOPLIST_FILE = RnTestTests/Info.plist;
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ OTHER_LDFLAGS = (
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RnTest.app/RnTest";
+ };
+ name = Debug;
+ };
+ 00E356F71AD99517003FC87E /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ COPY_PHASE_STRIP = NO;
+ INFOPLIST_FILE = RnTestTests/Info.plist;
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ OTHER_LDFLAGS = (
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RnTest.app/RnTest";
+ };
+ name = Release;
+ };
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CURRENT_PROJECT_VERSION = 1;
+ DEAD_CODE_STRIPPING = NO;
+ INFOPLIST_FILE = RnTest/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_NAME = RnTest;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Debug;
+ };
+ 13B07F951A680F5B00A75B9A /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CURRENT_PROJECT_VERSION = 1;
+ INFOPLIST_FILE = RnTest/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_NAME = RnTest;
+ 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 = "RnTest-tvOS/Info.plist";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ OTHER_LDFLAGS = (
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RnTest-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 = "RnTest-tvOS/Info.plist";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ OTHER_LDFLAGS = (
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RnTest-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 = "RnTest-tvOSTests/Info.plist";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ OTHER_LDFLAGS = (
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RnTest-tvOSTests";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SDKROOT = appletvos;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RnTest-tvOS.app/RnTest-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 = "RnTest-tvOSTests/Info.plist";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ OTHER_LDFLAGS = (
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RnTest-tvOSTests";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SDKROOT = appletvos;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RnTest-tvOS.app/RnTest-tvOS";
+ TVOS_DEPLOYMENT_TARGET = 10.1;
+ };
+ name = Release;
+ };
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ 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;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_DYNAMIC_NO_PIC = NO;
+ 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 = 8.0;
+ MTL_ENABLE_DEBUG_INFO = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ SDKROOT = iphoneos;
+ };
+ name = Debug;
+ };
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ 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_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 = 8.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RnTestTests" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 00E356F61AD99517003FC87E /* Debug */,
+ 00E356F71AD99517003FC87E /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RnTest" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 13B07F941A680F5B00A75B9A /* Debug */,
+ 13B07F951A680F5B00A75B9A /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RnTest-tvOS" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 2D02E4971E0B4A5E006451C7 /* Debug */,
+ 2D02E4981E0B4A5E006451C7 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RnTest-tvOSTests" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 2D02E4991E0B4A5E006451C7 /* Debug */,
+ 2D02E49A1E0B4A5E006451C7 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RnTest" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 83CBBA201A601CBA00E9B192 /* Debug */,
+ 83CBBA211A601CBA00E9B192 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
+}
diff --git a/ios/RnTest.xcodeproj/xcshareddata/xcschemes/RnTest-tvOS.xcscheme b/ios/RnTest.xcodeproj/xcshareddata/xcschemes/RnTest-tvOS.xcscheme
new file mode 100644
index 00000000..79557f80
--- /dev/null
+++ b/ios/RnTest.xcodeproj/xcshareddata/xcschemes/RnTest-tvOS.xcscheme
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ios/RnTest.xcodeproj/xcshareddata/xcschemes/RnTest.xcscheme b/ios/RnTest.xcodeproj/xcshareddata/xcschemes/RnTest.xcscheme
new file mode 100644
index 00000000..50f8f083
--- /dev/null
+++ b/ios/RnTest.xcodeproj/xcshareddata/xcschemes/RnTest.xcscheme
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ios/RnTest/AppDelegate.h b/ios/RnTest/AppDelegate.h
new file mode 100644
index 00000000..d4f2580b
--- /dev/null
+++ b/ios/RnTest/AppDelegate.h
@@ -0,0 +1,14 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+@interface AppDelegate : UIResponder
+
+@property (nonatomic, strong) UIWindow *window;
+
+@end
diff --git a/ios/RnTest/AppDelegate.m b/ios/RnTest/AppDelegate.m
new file mode 100644
index 00000000..0f580d8c
--- /dev/null
+++ b/ios/RnTest/AppDelegate.m
@@ -0,0 +1,35 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "AppDelegate.h"
+
+#import
+#import
+
+@implementation AppDelegate
+
+- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
+{
+ NSURL *jsCodeLocation;
+
+ jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
+
+ RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
+ moduleName:@"RnTest"
+ initialProperties:nil
+ launchOptions:launchOptions];
+ 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;
+}
+
+@end
diff --git a/ios/RnTest/Base.lproj/LaunchScreen.xib b/ios/RnTest/Base.lproj/LaunchScreen.xib
new file mode 100644
index 00000000..e8dfac42
--- /dev/null
+++ b/ios/RnTest/Base.lproj/LaunchScreen.xib
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ios/RnTest/Images.xcassets/AppIcon.appiconset/Contents.json b/ios/RnTest/Images.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 00000000..118c98f7
--- /dev/null
+++ b/ios/RnTest/Images.xcassets/AppIcon.appiconset/Contents.json
@@ -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"
+ }
+}
\ No newline at end of file
diff --git a/ios/RnTest/Images.xcassets/Contents.json b/ios/RnTest/Images.xcassets/Contents.json
new file mode 100644
index 00000000..2d92bd53
--- /dev/null
+++ b/ios/RnTest/Images.xcassets/Contents.json
@@ -0,0 +1,6 @@
+{
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/ios/RnTest/Info.plist b/ios/RnTest/Info.plist
new file mode 100644
index 00000000..165e3e47
--- /dev/null
+++ b/ios/RnTest/Info.plist
@@ -0,0 +1,56 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleDisplayName
+ RnTest
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ $(PRODUCT_NAME)
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1
+ LSRequiresIPhoneOS
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIRequiredDeviceCapabilities
+
+ armv7
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UIViewControllerBasedStatusBarAppearance
+
+ NSLocationWhenInUseUsageDescription
+
+ NSAppTransportSecurity
+
+
+ NSExceptionDomains
+
+ localhost
+
+ NSExceptionAllowsInsecureHTTPLoads
+
+
+
+
+
+
diff --git a/ios/RnTest/main.m b/ios/RnTest/main.m
new file mode 100644
index 00000000..c73e0062
--- /dev/null
+++ b/ios/RnTest/main.m
@@ -0,0 +1,16 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import "AppDelegate.h"
+
+int main(int argc, char * argv[]) {
+ @autoreleasepool {
+ return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
+ }
+}
diff --git a/ios/RnTestTests/Info.plist b/ios/RnTestTests/Info.plist
new file mode 100644
index 00000000..886825cc
--- /dev/null
+++ b/ios/RnTestTests/Info.plist
@@ -0,0 +1,24 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ $(PRODUCT_NAME)
+ CFBundlePackageType
+ BNDL
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1
+
+
diff --git a/ios/RnTestTests/RnTestTests.m b/ios/RnTestTests/RnTestTests.m
new file mode 100644
index 00000000..439f1a60
--- /dev/null
+++ b/ios/RnTestTests/RnTestTests.m
@@ -0,0 +1,68 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+#import
+
+#import
+#import
+
+#define TIMEOUT_SECONDS 600
+#define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
+
+@interface RnTestTests : XCTestCase
+
+@end
+
+@implementation RnTestTests
+
+- (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;
+ RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
+ if (level >= RCTLogLevelError) {
+ redboxError = message;
+ }
+ });
+
+ 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;
+ }];
+ }
+
+ RCTSetLogFunction(RCTDefaultLogFunction);
+
+ XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
+ XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
+}
+
+
+@end
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheet.LinkFileList b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheet.LinkFileList
new file mode 100644
index 00000000..9d65563f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheet.LinkFileList
@@ -0,0 +1 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheetManager.o
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheetManager.d b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheetManager.d
new file mode 100644
index 00000000..fe012dd4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheetManager.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheetManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheetManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheetManager.dia b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheetManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheetManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheetManager.o b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheetManager.o
new file mode 100644
index 00000000..b1ecfe69
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/Objects-normal/x86_64/RCTActionSheetManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-project-headers.hmap
new file mode 100644
index 00000000..d7d8f8ac
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet.hmap b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet.hmap
new file mode 100644
index 00000000..d7d8f8ac
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/RCTActionSheet.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/StaticAnalyzer/RCTActionSheet/RCTActionSheet/normal/x86_64/RCTActionSheetManager.d b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/StaticAnalyzer/RCTActionSheet/RCTActionSheet/normal/x86_64/RCTActionSheetManager.d
new file mode 100644
index 00000000..fe012dd4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/StaticAnalyzer/RCTActionSheet/RCTActionSheet/normal/x86_64/RCTActionSheetManager.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheetManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheetManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/StaticAnalyzer/RCTActionSheet/RCTActionSheet/normal/x86_64/RCTActionSheetManager.plist b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/StaticAnalyzer/RCTActionSheet/RCTActionSheet/normal/x86_64/RCTActionSheetManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/StaticAnalyzer/RCTActionSheet/RCTActionSheet/normal/x86_64/RCTActionSheetManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/dgph b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/dgph
new file mode 100644
index 00000000..21a37ef7
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/dgph~ b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/dgph~
new file mode 100644
index 00000000..b94ef315
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTActionSheet.build/Debug-iphonesimulator/RCTActionSheet.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAdditionAnimatedNode.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAdditionAnimatedNode.d
new file mode 100644
index 00000000..37b6c3c8
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAdditionAnimatedNode.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAdditionAnimatedNode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAdditionAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAdditionAnimatedNode.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAdditionAnimatedNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAdditionAnimatedNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAdditionAnimatedNode.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAdditionAnimatedNode.o
new file mode 100644
index 00000000..571d07a1
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAdditionAnimatedNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimatedNode.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimatedNode.d
new file mode 100644
index 00000000..242fb079
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimatedNode.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimatedNode.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimatedNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimatedNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimatedNode.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimatedNode.o
new file mode 100644
index 00000000..01978420
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimatedNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimation.LinkFileList b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimation.LinkFileList
new file mode 100644
index 00000000..55d63889
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimation.LinkFileList
@@ -0,0 +1,19 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTFrameAnimation.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTSpringAnimation.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedNodesManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTValueAnimatedNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTModuloAnimatedNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDiffClampAnimatedNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTEventAnimation.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTStyleAnimatedNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimationUtils.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedModule.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTMultiplicationAnimatedNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTPropsAnimatedNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimatedNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTrackingAnimatedNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTInterpolationAnimatedNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAdditionAnimatedNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDivisionAnimatedNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTransformAnimatedNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDecayAnimation.o
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimationUtils.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimationUtils.d
new file mode 100644
index 00000000..0be30557
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimationUtils.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/RCTAnimationUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/RCTAnimationUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimationUtils.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimationUtils.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimationUtils.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimationUtils.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimationUtils.o
new file mode 100644
index 00000000..aa2c3c3c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTAnimationUtils.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDecayAnimation.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDecayAnimation.d
new file mode 100644
index 00000000..dbf29caf
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDecayAnimation.d
@@ -0,0 +1,19 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTDecayAnimation.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTDecayAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTAnimationDriver.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDecayAnimation.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDecayAnimation.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDecayAnimation.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDecayAnimation.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDecayAnimation.o
new file mode 100644
index 00000000..d98b0997
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDecayAnimation.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDiffClampAnimatedNode.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDiffClampAnimatedNode.d
new file mode 100644
index 00000000..52b04b34
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDiffClampAnimatedNode.d
@@ -0,0 +1,9 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTDiffClampAnimatedNode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTDiffClampAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDiffClampAnimatedNode.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDiffClampAnimatedNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDiffClampAnimatedNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDiffClampAnimatedNode.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDiffClampAnimatedNode.o
new file mode 100644
index 00000000..fc21b4c6
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDiffClampAnimatedNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDivisionAnimatedNode.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDivisionAnimatedNode.d
new file mode 100644
index 00000000..fa357596
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDivisionAnimatedNode.d
@@ -0,0 +1,9 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTDivisionAnimatedNode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTDivisionAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDivisionAnimatedNode.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDivisionAnimatedNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDivisionAnimatedNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDivisionAnimatedNode.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDivisionAnimatedNode.o
new file mode 100644
index 00000000..90e7aabc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTDivisionAnimatedNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTEventAnimation.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTEventAnimation.d
new file mode 100644
index 00000000..c58d5a01
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTEventAnimation.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTEventAnimation.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTEventAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTEventAnimation.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTEventAnimation.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTEventAnimation.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTEventAnimation.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTEventAnimation.o
new file mode 100644
index 00000000..4d21560f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTEventAnimation.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTFrameAnimation.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTFrameAnimation.d
new file mode 100644
index 00000000..9d81b066
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTFrameAnimation.d
@@ -0,0 +1,20 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTFrameAnimation.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTFrameAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTAnimationDriver.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/RCTAnimationUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTFrameAnimation.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTFrameAnimation.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTFrameAnimation.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTFrameAnimation.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTFrameAnimation.o
new file mode 100644
index 00000000..b941ff33
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTFrameAnimation.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTInterpolationAnimatedNode.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTInterpolationAnimatedNode.d
new file mode 100644
index 00000000..13fe8f4f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTInterpolationAnimatedNode.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/RCTAnimationUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTInterpolationAnimatedNode.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTInterpolationAnimatedNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTInterpolationAnimatedNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTInterpolationAnimatedNode.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTInterpolationAnimatedNode.o
new file mode 100644
index 00000000..2b80f3f7
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTInterpolationAnimatedNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTModuloAnimatedNode.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTModuloAnimatedNode.d
new file mode 100644
index 00000000..84e83a2b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTModuloAnimatedNode.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTModuloAnimatedNode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTModuloAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTModuloAnimatedNode.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTModuloAnimatedNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTModuloAnimatedNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTModuloAnimatedNode.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTModuloAnimatedNode.o
new file mode 100644
index 00000000..08839505
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTModuloAnimatedNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTMultiplicationAnimatedNode.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTMultiplicationAnimatedNode.d
new file mode 100644
index 00000000..f87cf084
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTMultiplicationAnimatedNode.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTMultiplicationAnimatedNode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTMultiplicationAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTMultiplicationAnimatedNode.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTMultiplicationAnimatedNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTMultiplicationAnimatedNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTMultiplicationAnimatedNode.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTMultiplicationAnimatedNode.o
new file mode 100644
index 00000000..5a1a8c0a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTMultiplicationAnimatedNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedModule.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedModule.d
new file mode 100644
index 00000000..fa4fb6be
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedModule.d
@@ -0,0 +1,33 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/RCTNativeAnimatedModule.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/RCTNativeAnimatedModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedModule.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedModule.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedModule.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedModule.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedModule.o
new file mode 100644
index 00000000..13241e7b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedModule.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedNodesManager.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedNodesManager.d
new file mode 100644
index 00000000..b55357ba
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedNodesManager.d
@@ -0,0 +1,44 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAdditionAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTAnimationDriver.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTDiffClampAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTDivisionAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTEventAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTFrameAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTDecayAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTModuloAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTMultiplicationAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTPropsAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTSpringAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTStyleAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTTransformAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTTrackingAnimatedNode.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedNodesManager.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedNodesManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedNodesManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedNodesManager.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedNodesManager.o
new file mode 100644
index 00000000..425cdaa5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTNativeAnimatedNodesManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTPropsAnimatedNode.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTPropsAnimatedNode.d
new file mode 100644
index 00000000..7b807e88
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTPropsAnimatedNode.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTPropsAnimatedNode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTPropsAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/RCTAnimationUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTStyleAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTPropsAnimatedNode.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTPropsAnimatedNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTPropsAnimatedNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTPropsAnimatedNode.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTPropsAnimatedNode.o
new file mode 100644
index 00000000..55dff3ea
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTPropsAnimatedNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTSpringAnimation.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTSpringAnimation.d
new file mode 100644
index 00000000..d79c3cd7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTSpringAnimation.d
@@ -0,0 +1,19 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTSpringAnimation.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTSpringAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Drivers/RCTAnimationDriver.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTSpringAnimation.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTSpringAnimation.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTSpringAnimation.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTSpringAnimation.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTSpringAnimation.o
new file mode 100644
index 00000000..c4c9979e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTSpringAnimation.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTStyleAnimatedNode.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTStyleAnimatedNode.d
new file mode 100644
index 00000000..9b97cab0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTStyleAnimatedNode.d
@@ -0,0 +1,8 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTStyleAnimatedNode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTStyleAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/RCTAnimationUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTTransformAnimatedNode.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTStyleAnimatedNode.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTStyleAnimatedNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTStyleAnimatedNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTStyleAnimatedNode.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTStyleAnimatedNode.o
new file mode 100644
index 00000000..f3a63296
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTStyleAnimatedNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTrackingAnimatedNode.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTrackingAnimatedNode.d
new file mode 100644
index 00000000..45fbff46
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTrackingAnimatedNode.d
@@ -0,0 +1,30 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTTrackingAnimatedNode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTTrackingAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTrackingAnimatedNode.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTrackingAnimatedNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTrackingAnimatedNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTrackingAnimatedNode.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTrackingAnimatedNode.o
new file mode 100644
index 00000000..8f5465f5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTrackingAnimatedNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTransformAnimatedNode.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTransformAnimatedNode.d
new file mode 100644
index 00000000..ed053165
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTransformAnimatedNode.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTTransformAnimatedNode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTTransformAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTransformAnimatedNode.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTransformAnimatedNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTransformAnimatedNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTransformAnimatedNode.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTransformAnimatedNode.o
new file mode 100644
index 00000000..86388f61
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTTransformAnimatedNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTValueAnimatedNode.d b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTValueAnimatedNode.d
new file mode 100644
index 00000000..75225d30
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTValueAnimatedNode.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTValueAnimatedNode.dia b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTValueAnimatedNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTValueAnimatedNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTValueAnimatedNode.o b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTValueAnimatedNode.o
new file mode 100644
index 00000000..ea1ea51f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/Objects-normal/x86_64/RCTValueAnimatedNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-own-target-headers.hmap
new file mode 100644
index 00000000..7483746a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-project-headers.hmap
new file mode 100644
index 00000000..1fd265f1
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation.hmap b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation.hmap
new file mode 100644
index 00000000..7483746a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/RCTAnimation.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/dgph b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/dgph
new file mode 100644
index 00000000..05e545bf
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/dgph~ b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/dgph~
new file mode 100644
index 00000000..01d032c6
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTAnimation.build/Debug-iphonesimulator/RCTAnimation.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlob.LinkFileList b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlob.LinkFileList
new file mode 100644
index 00000000..fbf41e58
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlob.LinkFileList
@@ -0,0 +1,2 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTFileReaderModule.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlobManager.o
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlobManager.d b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlobManager.d
new file mode 100644
index 00000000..1d24db96
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlobManager.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Blob/RCTBlobManager.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Blob/RCTBlobManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworking.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworkTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTWebSocketModule.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlobManager.dia b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlobManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlobManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlobManager.o b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlobManager.o
new file mode 100644
index 00000000..ef5aff90
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTBlobManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTFileReaderModule.d b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTFileReaderModule.d
new file mode 100644
index 00000000..cc147987
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTFileReaderModule.d
@@ -0,0 +1,24 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Blob/RCTFileReaderModule.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Blob/RCTFileReaderModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Blob/RCTBlobManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTFileReaderModule.dia b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTFileReaderModule.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTFileReaderModule.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTFileReaderModule.o b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTFileReaderModule.o
new file mode 100644
index 00000000..935c101e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/Objects-normal/x86_64/RCTFileReaderModule.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-own-target-headers.hmap
new file mode 100644
index 00000000..9f89abb2
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-project-headers.hmap
new file mode 100644
index 00000000..3a759e10
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob.hmap b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob.hmap
new file mode 100644
index 00000000..9f89abb2
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/RCTBlob.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/dgph b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/dgph
new file mode 100644
index 00000000..1ce75d80
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/dgph~ b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/dgph~
new file mode 100644
index 00000000..0a4f1f28
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTBlob.build/Debug-iphonesimulator/RCTBlob.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTGeolocation.LinkFileList b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTGeolocation.LinkFileList
new file mode 100644
index 00000000..f8925e74
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTGeolocation.LinkFileList
@@ -0,0 +1 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTLocationObserver.o
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTLocationObserver.d b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTLocationObserver.d
new file mode 100644
index 00000000..1be24741
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTLocationObserver.d
@@ -0,0 +1,23 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Geolocation/RCTLocationObserver.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Geolocation/RCTLocationObserver.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTLocationObserver.dia b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTLocationObserver.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTLocationObserver.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTLocationObserver.o b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTLocationObserver.o
new file mode 100644
index 00000000..5834f6df
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/Objects-normal/x86_64/RCTLocationObserver.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-project-headers.hmap
new file mode 100644
index 00000000..ad714878
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation.hmap b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation.hmap
new file mode 100644
index 00000000..ad714878
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/RCTGeolocation.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/StaticAnalyzer/RCTGeolocation/RCTGeolocation/normal/x86_64/RCTLocationObserver.d b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/StaticAnalyzer/RCTGeolocation/RCTGeolocation/normal/x86_64/RCTLocationObserver.d
new file mode 100644
index 00000000..1be24741
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/StaticAnalyzer/RCTGeolocation/RCTGeolocation/normal/x86_64/RCTLocationObserver.d
@@ -0,0 +1,23 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Geolocation/RCTLocationObserver.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Geolocation/RCTLocationObserver.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/StaticAnalyzer/RCTGeolocation/RCTGeolocation/normal/x86_64/RCTLocationObserver.plist b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/StaticAnalyzer/RCTGeolocation/RCTGeolocation/normal/x86_64/RCTLocationObserver.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/StaticAnalyzer/RCTGeolocation/RCTGeolocation/normal/x86_64/RCTLocationObserver.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/dgph b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/dgph
new file mode 100644
index 00000000..5d44b832
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/dgph~ b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/dgph~
new file mode 100644
index 00000000..6b30fc5e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTGeolocation.build/Debug-iphonesimulator/RCTGeolocation.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTGIFImageDecoder.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTGIFImageDecoder.d
new file mode 100644
index 00000000..539f26d0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTGIFImageDecoder.d
@@ -0,0 +1,25 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTGIFImageDecoder.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTGIFImageDecoder.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTGIFImageDecoder.dia b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTGIFImageDecoder.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTGIFImageDecoder.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTGIFImageDecoder.o b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTGIFImageDecoder.o
new file mode 100644
index 00000000..4740f4ad
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTGIFImageDecoder.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImage.LinkFileList b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImage.LinkFileList
new file mode 100644
index 00000000..28d69666
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImage.LinkFileList
@@ -0,0 +1,12 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageStoreManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTGIFImageDecoder.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageLoader.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageEditingManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTResizeMode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageBlurUtils.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageShadowView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTLocalAssetImageLoader.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageUtils.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageCache.o
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageBlurUtils.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageBlurUtils.d
new file mode 100644
index 00000000..4092a4f6
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageBlurUtils.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageBlurUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageBlurUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageBlurUtils.dia b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageBlurUtils.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageBlurUtils.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageBlurUtils.o b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageBlurUtils.o
new file mode 100644
index 00000000..7920e960
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageBlurUtils.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageCache.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageCache.d
new file mode 100644
index 00000000..d7cc4895
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageCache.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageCache.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageCache.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworking.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworkTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageCache.dia b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageCache.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageCache.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageCache.o b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageCache.o
new file mode 100644
index 00000000..2390fb9d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageCache.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageEditingManager.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageEditingManager.d
new file mode 100644
index 00000000..dacd44da
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageEditingManager.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageEditingManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageEditingManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageStoreManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageEditingManager.dia b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageEditingManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageEditingManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageEditingManager.o b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageEditingManager.o
new file mode 100644
index 00000000..0e587026
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageEditingManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageLoader.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageLoader.d
new file mode 100644
index 00000000..e33d42a5
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageLoader.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageLoader.m \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworking.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworkTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageCache.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageLoader.dia b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageLoader.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageLoader.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageLoader.o b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageLoader.o
new file mode 100644
index 00000000..fdd28d1b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageLoader.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageShadowView.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageShadowView.d
new file mode 100644
index 00000000..db1ca720
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageShadowView.d
@@ -0,0 +1,20 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageShadowView.dia b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageShadowView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageShadowView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageShadowView.o b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageShadowView.o
new file mode 100644
index 00000000..fe74e1a2
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageShadowView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageStoreManager.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageStoreManager.d
new file mode 100644
index 00000000..3c64456b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageStoreManager.d
@@ -0,0 +1,25 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageStoreManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageStoreManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageStoreManager.dia b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageStoreManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageStoreManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageStoreManager.o b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageStoreManager.o
new file mode 100644
index 00000000..90f8a04c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageStoreManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageUtils.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageUtils.d
new file mode 100644
index 00000000..a0882b25
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageUtils.d
@@ -0,0 +1,16 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageUtils.dia b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageUtils.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageUtils.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageUtils.o b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageUtils.o
new file mode 100644
index 00000000..67171676
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageUtils.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageView.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageView.d
new file mode 100644
index 00000000..d1004f8d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageView.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTImageSource.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageBlurUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageView.dia b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageView.o b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageView.o
new file mode 100644
index 00000000..d001f2dc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageViewManager.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageViewManager.d
new file mode 100644
index 00000000..04801ea3
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageViewManager.d
@@ -0,0 +1,34 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageViewManager.dia b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageViewManager.o b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageViewManager.o
new file mode 100644
index 00000000..f6f1b68b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTImageViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTLocalAssetImageLoader.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTLocalAssetImageLoader.d
new file mode 100644
index 00000000..59905ac5
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTLocalAssetImageLoader.d
@@ -0,0 +1,25 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTLocalAssetImageLoader.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTLocalAssetImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTLocalAssetImageLoader.dia b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTLocalAssetImageLoader.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTLocalAssetImageLoader.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTLocalAssetImageLoader.o b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTLocalAssetImageLoader.o
new file mode 100644
index 00000000..ad5e785d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTLocalAssetImageLoader.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTResizeMode.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTResizeMode.d
new file mode 100644
index 00000000..88929a6f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTResizeMode.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTResizeMode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTResizeMode.dia b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTResizeMode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTResizeMode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTResizeMode.o b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTResizeMode.o
new file mode 100644
index 00000000..14b85c4b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/Objects-normal/x86_64/RCTResizeMode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-own-target-headers.hmap
new file mode 100644
index 00000000..5a6a719c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-project-headers.hmap
new file mode 100644
index 00000000..a62c6137
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage.hmap b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage.hmap
new file mode 100644
index 00000000..5a6a719c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/RCTImage.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTGIFImageDecoder.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTGIFImageDecoder.d
new file mode 100644
index 00000000..539f26d0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTGIFImageDecoder.d
@@ -0,0 +1,25 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTGIFImageDecoder.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTGIFImageDecoder.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTGIFImageDecoder.plist b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTGIFImageDecoder.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTGIFImageDecoder.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageBlurUtils.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageBlurUtils.d
new file mode 100644
index 00000000..4092a4f6
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageBlurUtils.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageBlurUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageBlurUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageBlurUtils.plist b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageBlurUtils.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageBlurUtils.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageCache.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageCache.d
new file mode 100644
index 00000000..d7cc4895
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageCache.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageCache.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageCache.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworking.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworkTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageCache.plist b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageCache.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageCache.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageEditingManager.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageEditingManager.d
new file mode 100644
index 00000000..dacd44da
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageEditingManager.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageEditingManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageEditingManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageStoreManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageEditingManager.plist b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageEditingManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageEditingManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageLoader.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageLoader.d
new file mode 100644
index 00000000..e33d42a5
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageLoader.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageLoader.m \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworking.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworkTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageCache.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageLoader.plist b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageLoader.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageLoader.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageShadowView.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageShadowView.d
new file mode 100644
index 00000000..db1ca720
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageShadowView.d
@@ -0,0 +1,20 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageShadowView.plist b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageShadowView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageShadowView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageStoreManager.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageStoreManager.d
new file mode 100644
index 00000000..3c64456b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageStoreManager.d
@@ -0,0 +1,25 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageStoreManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageStoreManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageStoreManager.plist b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageStoreManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageStoreManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageUtils.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageUtils.d
new file mode 100644
index 00000000..a0882b25
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageUtils.d
@@ -0,0 +1,16 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageUtils.plist b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageUtils.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageUtils.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageView.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageView.d
new file mode 100644
index 00000000..d1004f8d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageView.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTImageSource.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageBlurUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageView.plist b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageViewManager.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageViewManager.d
new file mode 100644
index 00000000..04801ea3
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageViewManager.d
@@ -0,0 +1,34 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTImageView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageViewManager.plist b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTImageViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTLocalAssetImageLoader.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTLocalAssetImageLoader.d
new file mode 100644
index 00000000..59905ac5
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTLocalAssetImageLoader.d
@@ -0,0 +1,25 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTLocalAssetImageLoader.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTLocalAssetImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTImageLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTLocalAssetImageLoader.plist b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTLocalAssetImageLoader.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTLocalAssetImageLoader.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTResizeMode.d b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTResizeMode.d
new file mode 100644
index 00000000..88929a6f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTResizeMode.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTResizeMode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Image/RCTResizeMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTResizeMode.plist b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTResizeMode.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/StaticAnalyzer/RCTImage/RCTImage/normal/x86_64/RCTResizeMode.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/dgph b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/dgph
new file mode 100644
index 00000000..8630a913
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/dgph~ b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/dgph~
new file mode 100644
index 00000000..c9bcaa86
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTImage.build/Debug-iphonesimulator/RCTImage.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinking.LinkFileList b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinking.LinkFileList
new file mode 100644
index 00000000..fd382405
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinking.LinkFileList
@@ -0,0 +1 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinkingManager.o
diff --git a/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinkingManager.d b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinkingManager.d
new file mode 100644
index 00000000..8fa0919f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinkingManager.d
@@ -0,0 +1,14 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/LinkingIOS/RCTLinkingManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/LinkingIOS/RCTLinkingManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinkingManager.dia b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinkingManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinkingManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinkingManager.o b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinkingManager.o
new file mode 100644
index 00000000..26bc5fd8
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/Objects-normal/x86_64/RCTLinkingManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-project-headers.hmap
new file mode 100644
index 00000000..288a89d4
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking.hmap b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking.hmap
new file mode 100644
index 00000000..288a89d4
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/RCTLinking.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/dgph b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/dgph
new file mode 100644
index 00000000..811a9097
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/dgph~ b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/dgph~
new file mode 100644
index 00000000..cc97ffdc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTLinking.build/Debug-iphonesimulator/RCTLinking.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTDataRequestHandler.d b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTDataRequestHandler.d
new file mode 100644
index 00000000..e92d5cb4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTDataRequestHandler.d
@@ -0,0 +1,8 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTDataRequestHandler.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTDataRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTDataRequestHandler.dia b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTDataRequestHandler.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTDataRequestHandler.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTDataRequestHandler.o b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTDataRequestHandler.o
new file mode 100644
index 00000000..474de990
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTDataRequestHandler.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTFileRequestHandler.d b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTFileRequestHandler.d
new file mode 100644
index 00000000..8b128931
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTFileRequestHandler.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTFileRequestHandler.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTFileRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTFileRequestHandler.dia b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTFileRequestHandler.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTFileRequestHandler.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTFileRequestHandler.o b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTFileRequestHandler.o
new file mode 100644
index 00000000..2b1350c0
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTFileRequestHandler.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTHTTPRequestHandler.d b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTHTTPRequestHandler.d
new file mode 100644
index 00000000..4172b4d1
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTHTTPRequestHandler.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTNetworking.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworkTask.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTHTTPRequestHandler.dia b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTHTTPRequestHandler.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTHTTPRequestHandler.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTHTTPRequestHandler.o b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTHTTPRequestHandler.o
new file mode 100644
index 00000000..2afae6b5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTHTTPRequestHandler.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetInfo.d b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetInfo.d
new file mode 100644
index 00000000..962ce5e7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetInfo.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTNetInfo.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTNetInfo.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetInfo.dia b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetInfo.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetInfo.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetInfo.o b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetInfo.o
new file mode 100644
index 00000000..c2e8888a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetInfo.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetwork.LinkFileList b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetwork.LinkFileList
new file mode 100644
index 00000000..5f467eff
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetwork.LinkFileList
@@ -0,0 +1,6 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworkTask.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTFileRequestHandler.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTDataRequestHandler.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetInfo.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworking.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTHTTPRequestHandler.o
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworkTask.d b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworkTask.d
new file mode 100644
index 00000000..c2dfb55b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworkTask.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTNetworkTask.m \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworkTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworkTask.dia b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworkTask.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworkTask.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworkTask.o b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworkTask.o
new file mode 100644
index 00000000..8856f840
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworkTask.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworking.d b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworking.d
new file mode 100644
index 00000000..25007c48
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworking.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTNetworking.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworkTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworking.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworking.dia b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworking.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworking.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworking.o b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworking.o
new file mode 100644
index 00000000..c9341891
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/Objects-normal/x86_64/RCTNetworking.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-project-headers.hmap
new file mode 100644
index 00000000..c5dae505
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork.hmap b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork.hmap
new file mode 100644
index 00000000..09e6df90
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/RCTNetwork.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTDataRequestHandler.d b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTDataRequestHandler.d
new file mode 100644
index 00000000..e92d5cb4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTDataRequestHandler.d
@@ -0,0 +1,8 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTDataRequestHandler.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTDataRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTDataRequestHandler.plist b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTDataRequestHandler.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTDataRequestHandler.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTFileRequestHandler.d b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTFileRequestHandler.d
new file mode 100644
index 00000000..8b128931
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTFileRequestHandler.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTFileRequestHandler.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTFileRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTFileRequestHandler.plist b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTFileRequestHandler.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTFileRequestHandler.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTHTTPRequestHandler.d b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTHTTPRequestHandler.d
new file mode 100644
index 00000000..4172b4d1
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTHTTPRequestHandler.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTNetworking.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworkTask.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTHTTPRequestHandler.plist b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTHTTPRequestHandler.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTHTTPRequestHandler.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetInfo.d b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetInfo.d
new file mode 100644
index 00000000..962ce5e7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetInfo.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTNetInfo.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTNetInfo.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetInfo.plist b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetInfo.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetInfo.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetworkTask.d b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetworkTask.d
new file mode 100644
index 00000000..c2dfb55b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetworkTask.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTNetworkTask.m \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworkTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetworkTask.plist b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetworkTask.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetworkTask.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetworking.d b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetworking.d
new file mode 100644
index 00000000..25007c48
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetworking.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTNetworking.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworkTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTURLRequestHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTNetworking.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetworking.plist b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetworking.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/StaticAnalyzer/RCTNetwork/RCTNetwork/normal/x86_64/RCTNetworking.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/dgph b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/dgph
new file mode 100644
index 00000000..1f9358e8
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/dgph~ b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/dgph~
new file mode 100644
index 00000000..bb730d7d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTNetwork.build/Debug-iphonesimulator/RCTNetwork.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettings.LinkFileList b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettings.LinkFileList
new file mode 100644
index 00000000..c9f62b01
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettings.LinkFileList
@@ -0,0 +1 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettingsManager.o
diff --git a/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettingsManager.d b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettingsManager.d
new file mode 100644
index 00000000..cdc57aa7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettingsManager.d
@@ -0,0 +1,22 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Settings/RCTSettingsManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Settings/RCTSettingsManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettingsManager.dia b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettingsManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettingsManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettingsManager.o b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettingsManager.o
new file mode 100644
index 00000000..0b51395e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/Objects-normal/x86_64/RCTSettingsManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-project-headers.hmap
new file mode 100644
index 00000000..95f7ccce
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings.hmap b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings.hmap
new file mode 100644
index 00000000..95f7ccce
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/RCTSettings.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/dgph b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/dgph
new file mode 100644
index 00000000..c7578a05
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/dgph~ b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/dgph~
new file mode 100644
index 00000000..a956375e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTSettings.build/Debug-iphonesimulator/RCTSettings.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/NSTextStorage+FontScaling.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/NSTextStorage+FontScaling.d
new file mode 100644
index 00000000..618fe8c9
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/NSTextStorage+FontScaling.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/NSTextStorage+FontScaling.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/NSTextStorage+FontScaling.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/NSTextStorage+FontScaling.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/NSTextStorage+FontScaling.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/NSTextStorage+FontScaling.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/NSTextStorage+FontScaling.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/NSTextStorage+FontScaling.o
new file mode 100644
index 00000000..438cc85d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/NSTextStorage+FontScaling.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBackedTextInputDelegateAdapter.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBackedTextInputDelegateAdapter.d
new file mode 100644
index 00000000..6f61eb80
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBackedTextInputDelegateAdapter.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBackedTextInputDelegateAdapter.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBackedTextInputDelegateAdapter.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBackedTextInputDelegateAdapter.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBackedTextInputDelegateAdapter.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBackedTextInputDelegateAdapter.o
new file mode 100644
index 00000000..23ca5c52
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBackedTextInputDelegateAdapter.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputShadowView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputShadowView.d
new file mode 100644
index 00000000..6c8a3ede
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputShadowView.d
@@ -0,0 +1,37 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/NSTextStorage+FontScaling.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputShadowView.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputShadowView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputShadowView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputShadowView.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputShadowView.o
new file mode 100644
index 00000000..a4eda539
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputShadowView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputView.d
new file mode 100644
index 00000000..3654c414
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputView.d
@@ -0,0 +1,35 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAccessibilityManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryViewContent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTTextSelection.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputView.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputView.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputView.o
new file mode 100644
index 00000000..fa1d328d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputViewManager.d
new file mode 100644
index 00000000..c41a7bd0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputViewManager.d
@@ -0,0 +1,43 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAccessibilityManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFont.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTConvert+Text.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputViewManager.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputViewManager.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputViewManager.o
new file mode 100644
index 00000000..71ada9ce
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextShadowView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextShadowView.d
new file mode 100644
index 00000000..4e1b7d26
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextShadowView.d
@@ -0,0 +1,22 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/VirtualText/RCTVirtualTextShadowView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextShadowView.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextShadowView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextShadowView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextShadowView.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextShadowView.o
new file mode 100644
index 00000000..778648ae
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextShadowView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextViewManager.d
new file mode 100644
index 00000000..e7e4c0c4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextViewManager.d
@@ -0,0 +1,25 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextViewManager.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextViewManager.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextViewManager.o
new file mode 100644
index 00000000..8b4c3c87
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTConvert+Text.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTConvert+Text.d
new file mode 100644
index 00000000..08563e81
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTConvert+Text.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTConvert+Text.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTConvert+Text.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTConvert+Text.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTConvert+Text.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTConvert+Text.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTConvert+Text.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTConvert+Text.o
new file mode 100644
index 00000000..52117cf0
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTConvert+Text.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryView.d
new file mode 100644
index 00000000..6550d4fa
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryView.d
@@ -0,0 +1,16 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTouchHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryViewContent.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryView.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryView.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryView.o
new file mode 100644
index 00000000..bc2673f8
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewContent.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewContent.d
new file mode 100644
index 00000000..72709796
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewContent.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryViewContent.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryViewContent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewContent.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewContent.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewContent.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewContent.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewContent.o
new file mode 100644
index 00000000..b377d447
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewContent.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewManager.d
new file mode 100644
index 00000000..90e48355
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewManager.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewManager.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewManager.o
new file mode 100644
index 00000000..71034a74
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputView.d
new file mode 100644
index 00000000..87d205cd
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputView.d
@@ -0,0 +1,14 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTUITextView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputView.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputView.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputView.o
new file mode 100644
index 00000000..55bd2aeb
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputViewManager.d
new file mode 100644
index 00000000..13a9d941
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputViewManager.d
@@ -0,0 +1,32 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputViewManager.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputViewManager.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputViewManager.o
new file mode 100644
index 00000000..43cd2296
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextShadowView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextShadowView.d
new file mode 100644
index 00000000..f20d92ab
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextShadowView.d
@@ -0,0 +1,18 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextShadowView.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextShadowView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextShadowView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextShadowView.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextShadowView.o
new file mode 100644
index 00000000..d15d8764
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextShadowView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextViewManager.d
new file mode 100644
index 00000000..d9b5d9d7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextViewManager.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextViewManager.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextViewManager.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextViewManager.o
new file mode 100644
index 00000000..adf2b607
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputView.d
new file mode 100644
index 00000000..7e449d3a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputView.d
@@ -0,0 +1,18 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTUITextField.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputView.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputView.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputView.o
new file mode 100644
index 00000000..ef08740f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputViewManager.d
new file mode 100644
index 00000000..60c9c55b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputViewManager.d
@@ -0,0 +1,38 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputViewManager.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputViewManager.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputViewManager.o
new file mode 100644
index 00000000..239cbe94
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTText.LinkFileList b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTText.LinkFileList
new file mode 100644
index 00000000..f4177444
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTText.LinkFileList
@@ -0,0 +1,26 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextShadowView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextShadowView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputShadowView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTConvert+Text.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryViewContent.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextAttributes.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTInputAccessoryView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBackedTextInputDelegateAdapter.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextShadowView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTBaseTextInputViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextSelection.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTRawTextShadowView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/NSTextStorage+FontScaling.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTSinglelineTextInputView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTMultilineTextInputView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextField.o
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextAttributes.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextAttributes.d
new file mode 100644
index 00000000..5bb7d744
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextAttributes.d
@@ -0,0 +1,16 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFont.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextAttributes.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextAttributes.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextAttributes.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextAttributes.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextAttributes.o
new file mode 100644
index 00000000..574a5efd
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextAttributes.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextSelection.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextSelection.d
new file mode 100644
index 00000000..0535577a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextSelection.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTTextSelection.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTTextSelection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextSelection.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextSelection.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextSelection.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextSelection.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextSelection.o
new file mode 100644
index 00000000..71130aab
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextSelection.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextShadowView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextShadowView.d
new file mode 100644
index 00000000..b410f901
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextShadowView.d
@@ -0,0 +1,34 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/NSTextStorage+FontScaling.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextShadowView.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextShadowView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextShadowView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextShadowView.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextShadowView.o
new file mode 100644
index 00000000..9645e9f5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextShadowView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextView.d
new file mode 100644
index 00000000..b1b5a09a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextView.d
@@ -0,0 +1,24 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextView.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextView.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextView.o
new file mode 100644
index 00000000..5e7a8be2
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextViewManager.d
new file mode 100644
index 00000000..538612f3
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextViewManager.d
@@ -0,0 +1,38 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAccessibilityManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextViewManager.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextViewManager.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextViewManager.o
new file mode 100644
index 00000000..f391f524
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTTextViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextField.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextField.d
new file mode 100644
index 00000000..4010a7e9
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextField.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTUITextField.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTUITextField.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextField.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextField.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextField.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextField.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextField.o
new file mode 100644
index 00000000..08d92d2d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextField.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextView.d
new file mode 100644
index 00000000..0a9d4c35
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextView.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTUITextView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTUITextView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextView.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextView.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextView.o
new file mode 100644
index 00000000..f58c03a3
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTUITextView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextShadowView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextShadowView.d
new file mode 100644
index 00000000..13b1bfb6
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextShadowView.d
@@ -0,0 +1,22 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/VirtualText/RCTVirtualTextShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/VirtualText/RCTVirtualTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextShadowView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextShadowView.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextShadowView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextShadowView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextShadowView.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextShadowView.o
new file mode 100644
index 00000000..a56201c6
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextShadowView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextViewManager.d
new file mode 100644
index 00000000..5d19782f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextViewManager.d
@@ -0,0 +1,32 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/VirtualText/RCTVirtualTextViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/VirtualText/RCTVirtualTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/VirtualText/RCTVirtualTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextViewManager.dia b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextViewManager.o b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextViewManager.o
new file mode 100644
index 00000000..9e4f7f56
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/Objects-normal/x86_64/RCTVirtualTextViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-project-headers.hmap
new file mode 100644
index 00000000..cc5aaf70
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText.hmap b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText.hmap
new file mode 100644
index 00000000..e466e715
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/RCTText.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/NSTextStorage+FontScaling.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/NSTextStorage+FontScaling.d
new file mode 100644
index 00000000..618fe8c9
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/NSTextStorage+FontScaling.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/NSTextStorage+FontScaling.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/NSTextStorage+FontScaling.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/NSTextStorage+FontScaling.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/NSTextStorage+FontScaling.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/NSTextStorage+FontScaling.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBackedTextInputDelegateAdapter.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBackedTextInputDelegateAdapter.d
new file mode 100644
index 00000000..6f61eb80
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBackedTextInputDelegateAdapter.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBackedTextInputDelegateAdapter.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBackedTextInputDelegateAdapter.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBackedTextInputDelegateAdapter.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputShadowView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputShadowView.d
new file mode 100644
index 00000000..6c8a3ede
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputShadowView.d
@@ -0,0 +1,37 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/NSTextStorage+FontScaling.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputShadowView.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputShadowView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputShadowView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputView.d
new file mode 100644
index 00000000..3654c414
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputView.d
@@ -0,0 +1,35 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAccessibilityManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryViewContent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTTextSelection.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputView.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputViewManager.d
new file mode 100644
index 00000000..c41a7bd0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputViewManager.d
@@ -0,0 +1,43 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAccessibilityManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFont.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTConvert+Text.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputViewManager.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextInputViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextShadowView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextShadowView.d
new file mode 100644
index 00000000..4e1b7d26
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextShadowView.d
@@ -0,0 +1,22 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/VirtualText/RCTVirtualTextShadowView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextShadowView.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextShadowView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextShadowView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextViewManager.d
new file mode 100644
index 00000000..e7e4c0c4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextViewManager.d
@@ -0,0 +1,25 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextViewManager.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTBaseTextViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTConvert+Text.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTConvert+Text.d
new file mode 100644
index 00000000..08563e81
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTConvert+Text.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTConvert+Text.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTConvert+Text.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTConvert+Text.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTConvert+Text.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTConvert+Text.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryView.d
new file mode 100644
index 00000000..6550d4fa
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryView.d
@@ -0,0 +1,16 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTouchHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryViewContent.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryView.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryViewContent.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryViewContent.d
new file mode 100644
index 00000000..72709796
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryViewContent.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryViewContent.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryViewContent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryViewContent.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryViewContent.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryViewContent.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryViewManager.d
new file mode 100644
index 00000000..90e48355
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryViewManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTInputAccessoryView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryViewManager.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTInputAccessoryViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTMultilineTextInputView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTMultilineTextInputView.d
new file mode 100644
index 00000000..87d205cd
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTMultilineTextInputView.d
@@ -0,0 +1,14 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTUITextView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTMultilineTextInputView.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTMultilineTextInputView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTMultilineTextInputView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTMultilineTextInputViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTMultilineTextInputViewManager.d
new file mode 100644
index 00000000..13a9d941
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTMultilineTextInputViewManager.d
@@ -0,0 +1,32 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTMultilineTextInputViewManager.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTMultilineTextInputViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTMultilineTextInputViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTRawTextShadowView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTRawTextShadowView.d
new file mode 100644
index 00000000..f20d92ab
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTRawTextShadowView.d
@@ -0,0 +1,18 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTRawTextShadowView.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTRawTextShadowView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTRawTextShadowView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTRawTextViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTRawTextViewManager.d
new file mode 100644
index 00000000..d9b5d9d7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTRawTextViewManager.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTRawTextViewManager.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTRawTextViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTRawTextViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTSinglelineTextInputView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTSinglelineTextInputView.d
new file mode 100644
index 00000000..7e449d3a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTSinglelineTextInputView.d
@@ -0,0 +1,18 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTUITextField.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTSinglelineTextInputView.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTSinglelineTextInputView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTSinglelineTextInputView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTSinglelineTextInputViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTSinglelineTextInputViewManager.d
new file mode 100644
index 00000000..60c9c55b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTSinglelineTextInputViewManager.d
@@ -0,0 +1,38 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBaseTextInputView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTSinglelineTextInputViewManager.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTSinglelineTextInputViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTSinglelineTextInputViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextAttributes.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextAttributes.d
new file mode 100644
index 00000000..5bb7d744
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextAttributes.d
@@ -0,0 +1,16 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFont.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextAttributes.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextAttributes.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextAttributes.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextSelection.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextSelection.d
new file mode 100644
index 00000000..0535577a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextSelection.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTTextSelection.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTTextSelection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextSelection.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextSelection.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextSelection.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextShadowView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextShadowView.d
new file mode 100644
index 00000000..b410f901
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextShadowView.d
@@ -0,0 +1,34 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/NSTextStorage+FontScaling.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextShadowView.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextShadowView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextShadowView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextView.d
new file mode 100644
index 00000000..b1b5a09a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextView.d
@@ -0,0 +1,24 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextView.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextViewManager.d
new file mode 100644
index 00000000..538612f3
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextViewManager.d
@@ -0,0 +1,38 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAccessibilityManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/Text/RCTTextView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextViewManager.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTTextViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTUITextField.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTUITextField.d
new file mode 100644
index 00000000..4010a7e9
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTUITextField.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTUITextField.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Singleline/RCTUITextField.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTUITextField.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTUITextField.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTUITextField.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTUITextView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTUITextView.d
new file mode 100644
index 00000000..0a9d4c35
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTUITextView.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTUITextView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/Multiline/RCTUITextView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTUITextView.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTUITextView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTUITextView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTVirtualTextShadowView.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTVirtualTextShadowView.d
new file mode 100644
index 00000000..13b1bfb6
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTVirtualTextShadowView.d
@@ -0,0 +1,22 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/VirtualText/RCTVirtualTextShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/VirtualText/RCTVirtualTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RawText/RCTRawTextShadowView.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTVirtualTextShadowView.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTVirtualTextShadowView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTVirtualTextShadowView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTVirtualTextViewManager.d b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTVirtualTextViewManager.d
new file mode 100644
index 00000000..5d19782f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTVirtualTextViewManager.d
@@ -0,0 +1,32 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/VirtualText/RCTVirtualTextViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/VirtualText/RCTVirtualTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/VirtualText/RCTVirtualTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/BaseText/RCTBaseTextShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Text/RCTTextAttributes.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTVirtualTextViewManager.plist b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTVirtualTextViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/StaticAnalyzer/RCTText/RCTText/normal/x86_64/RCTVirtualTextViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/dgph b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/dgph
new file mode 100644
index 00000000..013d904d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/dgph~ b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/dgph~
new file mode 100644
index 00000000..f2b74d84
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTText.build/Debug-iphonesimulator/RCTText.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.LinkFileList b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.LinkFileList
new file mode 100644
index 00000000..ea36e8ec
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.LinkFileList
@@ -0,0 +1 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.o
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.d b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.d
new file mode 100644
index 00000000..d479960e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Vibration/RCTVibration.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Vibration/RCTVibration.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.dia b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.o b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.o
new file mode 100644
index 00000000..3b513738
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/Objects-normal/x86_64/RCTVibration.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-project-headers.hmap
new file mode 100644
index 00000000..772f3deb
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration.hmap b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration.hmap
new file mode 100644
index 00000000..772f3deb
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/RCTVibration.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/StaticAnalyzer/RCTVibration/RCTVibration/normal/x86_64/RCTVibration.d b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/StaticAnalyzer/RCTVibration/RCTVibration/normal/x86_64/RCTVibration.d
new file mode 100644
index 00000000..d479960e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/StaticAnalyzer/RCTVibration/RCTVibration/normal/x86_64/RCTVibration.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Vibration/RCTVibration.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/Vibration/RCTVibration.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/StaticAnalyzer/RCTVibration/RCTVibration/normal/x86_64/RCTVibration.plist b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/StaticAnalyzer/RCTVibration/RCTVibration/normal/x86_64/RCTVibration.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/StaticAnalyzer/RCTVibration/RCTVibration/normal/x86_64/RCTVibration.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/dgph b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/dgph
new file mode 100644
index 00000000..95fe2763
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/dgph~ b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/dgph~
new file mode 100644
index 00000000..293a02ac
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTVibration.build/Debug-iphonesimulator/RCTVibration.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTReconnectingWebSocket.d b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTReconnectingWebSocket.d
new file mode 100644
index 00000000..26315e31
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTReconnectingWebSocket.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/WebSocket/RCTReconnectingWebSocket.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/WebSocket/RCTReconnectingWebSocket.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/fishhook/fishhook.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/WebSocket/RCTSRWebSocket.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTReconnectingWebSocket.dia b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTReconnectingWebSocket.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTReconnectingWebSocket.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTReconnectingWebSocket.o b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTReconnectingWebSocket.o
new file mode 100644
index 00000000..64e3d8fd
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTReconnectingWebSocket.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTSRWebSocket.d b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTSRWebSocket.d
new file mode 100644
index 00000000..4721154e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTSRWebSocket.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/WebSocket/RCTSRWebSocket.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/WebSocket/RCTSRWebSocket.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTSRWebSocket.dia b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTSRWebSocket.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTSRWebSocket.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTSRWebSocket.o b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTSRWebSocket.o
new file mode 100644
index 00000000..3fd49de5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTSRWebSocket.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocket.LinkFileList b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocket.LinkFileList
new file mode 100644
index 00000000..63497afd
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocket.LinkFileList
@@ -0,0 +1,4 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTSRWebSocket.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketModule.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTReconnectingWebSocket.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketExecutor.o
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketExecutor.d b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketExecutor.d
new file mode 100644
index 00000000..b9fe51ec
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketExecutor.d
@@ -0,0 +1,23 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/WebSocket/RCTWebSocketExecutor.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/WebSocket/RCTWebSocketExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/WebSocket/RCTSRWebSocket.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketExecutor.dia b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketExecutor.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketExecutor.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketExecutor.o b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketExecutor.o
new file mode 100644
index 00000000..90e0b081
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketExecutor.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketModule.d b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketModule.d
new file mode 100644
index 00000000..7418af60
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketModule.d
@@ -0,0 +1,23 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/WebSocket/RCTWebSocketModule.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/WebSocket/RCTWebSocketModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/WebSocket/RCTSRWebSocket.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketModule.dia b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketModule.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketModule.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketModule.o b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketModule.o
new file mode 100644
index 00000000..d44e33de
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/Objects-normal/x86_64/RCTWebSocketModule.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-project-headers.hmap
new file mode 100644
index 00000000..f759c616
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket.hmap b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket.hmap
new file mode 100644
index 00000000..2985c084
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/RCTWebSocket.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/dgph b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/dgph
new file mode 100644
index 00000000..11ab19d5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/dgph~ b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/dgph~
new file mode 100644
index 00000000..24b985c9
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/RCTWebSocket.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.LinkFileList b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.LinkFileList
new file mode 100644
index 00000000..18d2a9ae
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.LinkFileList
@@ -0,0 +1 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.o
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.d b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.d
new file mode 100644
index 00000000..c104456c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/fishhook/fishhook.c \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/Libraries/fishhook/fishhook.h
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.dia b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.o b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.o
new file mode 100644
index 00000000..7dde0246
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/Objects-normal/x86_64/fishhook.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/dgph b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/dgph
new file mode 100644
index 00000000..ad9293d9
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/dgph~ b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/dgph~
new file mode 100644
index 00000000..24b985c9
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-project-headers.hmap
new file mode 100644
index 00000000..f759c616
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook.hmap b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook.hmap
new file mode 100644
index 00000000..f759c616
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RCTWebSocket.build/Debug-iphonesimulator/fishhook.build/fishhook.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/InspectorInterfaces.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/InspectorInterfaces.d
new file mode 100644
index 00000000..8ef514d2
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/InspectorInterfaces.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jsinspector/InspectorInterfaces.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jsinspector/InspectorInterfaces.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/InspectorInterfaces.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/InspectorInterfaces.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/InspectorInterfaces.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/InspectorInterfaces.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/InspectorInterfaces.o
new file mode 100644
index 00000000..6207d20f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/InspectorInterfaces.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/JSCTracing.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/JSCTracing.d
new file mode 100644
index 00000000..0e29b5cf
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/JSCTracing.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCTracing.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCTracing.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/JSCTracing.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/JSCTracing.dia
new file mode 100644
index 00000000..82d4ed98
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/JSCTracing.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/JSCTracing.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/JSCTracing.o
new file mode 100644
index 00000000..6b4e7082
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/JSCTracing.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/NSDataBigString.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/NSDataBigString.d
new file mode 100644
index 00000000..57d56a85
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/NSDataBigString.d
@@ -0,0 +1,357 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/NSDataBigString.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/NSDataBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/NSDataBigString.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/NSDataBigString.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/NSDataBigString.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/NSDataBigString.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/NSDataBigString.o
new file mode 100644
index 00000000..307925e5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/NSDataBigString.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/PrivateDataBase.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/PrivateDataBase.d
new file mode 100644
index 00000000..1bcd0e0b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/PrivateDataBase.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/privatedata/PrivateDataBase.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/privatedata/PrivateDataBase.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/PrivateDataBase.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/PrivateDataBase.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/PrivateDataBase.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/PrivateDataBase.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/PrivateDataBase.o
new file mode 100644
index 00000000..6e997eba
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/PrivateDataBase.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAccessibilityManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAccessibilityManager.d
new file mode 100644
index 00000000..56e5734f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAccessibilityManager.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAccessibilityManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAccessibilityManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAccessibilityManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAccessibilityManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAccessibilityManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAccessibilityManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAccessibilityManager.o
new file mode 100644
index 00000000..86504181
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAccessibilityManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorView.d
new file mode 100644
index 00000000..60ed71d3
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorView.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTActivityIndicatorView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTActivityIndicatorView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorView.o
new file mode 100644
index 00000000..c0734c16
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorViewManager.d
new file mode 100644
index 00000000..655f4765
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorViewManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTActivityIndicatorView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorViewManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorViewManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorViewManager.o
new file mode 100644
index 00000000..950b469a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAlertManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAlertManager.d
new file mode 100644
index 00000000..44158541
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAlertManager.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAlertManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAlertManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAlertManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAlertManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAlertManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAlertManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAlertManager.o
new file mode 100644
index 00000000..926dc452
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAlertManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAppState.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAppState.d
new file mode 100644
index 00000000..f2cd8de6
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAppState.d
@@ -0,0 +1,14 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAppState.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAppState.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAppState.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAppState.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAppState.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAppState.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAppState.o
new file mode 100644
index 00000000..8df16abc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAppState.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAssert.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAssert.d
new file mode 100644
index 00000000..2286342c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAssert.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAssert.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAssert.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAssert.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAssert.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAssert.o
new file mode 100644
index 00000000..5e9d1a74
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAssert.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAsyncLocalStorage.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAsyncLocalStorage.d
new file mode 100644
index 00000000..b46acae4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAsyncLocalStorage.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAsyncLocalStorage.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAsyncLocalStorage.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAsyncLocalStorage.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAsyncLocalStorage.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAsyncLocalStorage.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAsyncLocalStorage.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAsyncLocalStorage.o
new file mode 100644
index 00000000..4d1fd767
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAsyncLocalStorage.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBorderDrawing.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBorderDrawing.d
new file mode 100644
index 00000000..243cf00b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBorderDrawing.d
@@ -0,0 +1,8 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderDrawing.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderDrawing.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBorderDrawing.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBorderDrawing.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBorderDrawing.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBorderDrawing.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBorderDrawing.o
new file mode 100644
index 00000000..7da98d07
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBorderDrawing.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBridge.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBridge.d
new file mode 100644
index 00000000..5da51e9f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBridge.d
@@ -0,0 +1,28 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTInspectorDevServerHelper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTReloadCommand.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBridge.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBridge.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBridge.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBridge.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBridge.o
new file mode 100644
index 00000000..2e8aa334
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBridge.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBundleURLProvider.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBundleURLProvider.d
new file mode 100644
index 00000000..6b9a12a0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBundleURLProvider.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBundleURLProvider.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBundleURLProvider.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBundleURLProvider.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBundleURLProvider.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBundleURLProvider.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBundleURLProvider.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBundleURLProvider.o
new file mode 100644
index 00000000..010351b4
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBundleURLProvider.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTClipboard.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTClipboard.d
new file mode 100644
index 00000000..90112921
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTClipboard.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTClipboard.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTClipboard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTClipboard.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTClipboard.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTClipboard.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTClipboard.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTClipboard.o
new file mode 100644
index 00000000..ab640e51
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTClipboard.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTComponentData.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTComponentData.d
new file mode 100644
index 00000000..9bfa61ab
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTComponentData.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponentData.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponentData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTParserUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTComponentData.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTComponentData.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTComponentData.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTComponentData.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTComponentData.o
new file mode 100644
index 00000000..934b4969
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTComponentData.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+CoreLocation.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+CoreLocation.d
new file mode 100644
index 00000000..25b26711
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+CoreLocation.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTConvert+CoreLocation.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTConvert+CoreLocation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+CoreLocation.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+CoreLocation.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+CoreLocation.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+CoreLocation.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+CoreLocation.o
new file mode 100644
index 00000000..a864ef8d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+CoreLocation.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+Transform.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+Transform.d
new file mode 100644
index 00000000..b77b2a70
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+Transform.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTConvert+Transform.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTConvert+Transform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+Transform.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+Transform.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+Transform.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+Transform.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+Transform.o
new file mode 100644
index 00000000..07cd7dad
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+Transform.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert.d
new file mode 100644
index 00000000..4934394b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert.d
@@ -0,0 +1,16 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTImageSource.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTParserUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert.o
new file mode 100644
index 00000000..ba681379
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxBridge.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxBridge.d
new file mode 100644
index 00000000..e3ad46d1
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxBridge.d
@@ -0,0 +1,434 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTCxxBridge.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTCxxBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDevSettings.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDisplayLink.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBox.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorCustomizer.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/CxxNativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/CxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/Instance.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeToJsBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSBundleType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSIndexedRAMBundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSModulesUnbundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/Platform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/RAMBundleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/NSDataBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTJSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTMessageThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTObjcExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTDevLoadingView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxBridge.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxBridge.dia
new file mode 100644
index 00000000..68901ac1
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxBridge.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxBridge.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxBridge.o
new file mode 100644
index 00000000..95cf977e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxBridge.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxConvert.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxConvert.d
new file mode 100644
index 00000000..38a6b810
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxConvert.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTCxxConvert.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTCxxConvert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxConvert.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxConvert.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxConvert.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxConvert.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxConvert.o
new file mode 100644
index 00000000..cfc00baf
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxConvert.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxMethod.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxMethod.d
new file mode 100644
index 00000000..efe39898
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxMethod.d
@@ -0,0 +1,413 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxMethod.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/CxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JsArgumentHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JsArgumentHelpers-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxMethod.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxMethod.dia
new file mode 100644
index 00000000..7377aed7
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxMethod.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxMethod.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxMethod.o
new file mode 100644
index 00000000..b30cf65c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxMethod.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxModule.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxModule.d
new file mode 100644
index 00000000..988a823d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxModule.d
@@ -0,0 +1,387 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxModule.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/CxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxModule.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxModule.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxModule.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxModule.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxModule.o
new file mode 100644
index 00000000..c7edb61c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxModule.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxUtils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxUtils.d
new file mode 100644
index 00000000..ac484684
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxUtils.d
@@ -0,0 +1,401 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/CxxNativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/CxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/DispatchMessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTNativeModule.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxUtils.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxUtils.dia
new file mode 100644
index 00000000..188e804c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxUtils.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxUtils.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxUtils.o
new file mode 100644
index 00000000..ee0ab9f1
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxUtils.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePicker.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePicker.d
new file mode 100644
index 00000000..2f586b72
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePicker.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTDatePicker.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTDatePicker.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePicker.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePicker.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePicker.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePicker.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePicker.o
new file mode 100644
index 00000000..2bc23c89
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePicker.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePickerManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePickerManager.d
new file mode 100644
index 00000000..2f34c92e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePickerManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTDatePickerManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTDatePickerManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTDatePicker.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePickerManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePickerManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePickerManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePickerManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePickerManager.o
new file mode 100644
index 00000000..f1009d4c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePickerManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevLoadingView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevLoadingView.d
new file mode 100644
index 00000000..125ae1ba
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevLoadingView.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTDevLoadingView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTDevLoadingView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevLoadingView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevLoadingView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevLoadingView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevLoadingView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevLoadingView.o
new file mode 100644
index 00000000..82a6c03f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevLoadingView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevMenu.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevMenu.d
new file mode 100644
index 00000000..f97bb3d1
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevMenu.d
@@ -0,0 +1,18 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTDevMenu.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTDevMenu.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDevSettings.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTKeyCommands.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTInspectorDevServerHelper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevMenu.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevMenu.dia
new file mode 100644
index 00000000..1395538f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevMenu.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevMenu.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevMenu.o
new file mode 100644
index 00000000..a7d70966
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevMenu.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevSettings.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevSettings.d
new file mode 100644
index 00000000..bbc98deb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevSettings.d
@@ -0,0 +1,23 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDevSettings.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDevSettings.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTJSCSamplingProfiler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerClient.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerConnection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTInspectorDevServerHelper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevSettings.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevSettings.dia
new file mode 100644
index 00000000..2656f6a8
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevSettings.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevSettings.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevSettings.o
new file mode 100644
index 00000000..7b74e940
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevSettings.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDeviceInfo.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDeviceInfo.d
new file mode 100644
index 00000000..aaed0132
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDeviceInfo.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDeviceInfo.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDeviceInfo.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAccessibilityManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/UIUtils/RCTUIUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDeviceInfo.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDeviceInfo.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDeviceInfo.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDeviceInfo.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDeviceInfo.o
new file mode 100644
index 00000000..91f8d63e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDeviceInfo.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDisplayLink.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDisplayLink.d
new file mode 100644
index 00000000..52aab525
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDisplayLink.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDisplayLink.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDisplayLink.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDisplayLink.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDisplayLink.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDisplayLink.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDisplayLink.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDisplayLink.o
new file mode 100644
index 00000000..c7487afd
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDisplayLink.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTErrorInfo.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTErrorInfo.d
new file mode 100644
index 00000000..c48b3cbd
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTErrorInfo.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorInfo.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorInfo.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSStackFrame.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTErrorInfo.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTErrorInfo.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTErrorInfo.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTErrorInfo.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTErrorInfo.o
new file mode 100644
index 00000000..4d156054
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTErrorInfo.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventDispatcher.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventDispatcher.d
new file mode 100644
index 00000000..075c1686
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventDispatcher.d
@@ -0,0 +1,14 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventDispatcher.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventDispatcher.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventDispatcher.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventDispatcher.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventDispatcher.o
new file mode 100644
index 00000000..a0de6dc0
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventDispatcher.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventEmitter.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventEmitter.d
new file mode 100644
index 00000000..e7d77733
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventEmitter.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventEmitter.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventEmitter.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventEmitter.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventEmitter.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventEmitter.o
new file mode 100644
index 00000000..e81d9b37
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventEmitter.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTExceptionsManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTExceptionsManager.d
new file mode 100644
index 00000000..2c225ec5
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTExceptionsManager.d
@@ -0,0 +1,24 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTExceptionsManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTExceptionsManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBox.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorCustomizer.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTExceptionsManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTExceptionsManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTExceptionsManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTExceptionsManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTExceptionsManager.o
new file mode 100644
index 00000000..debe0b34
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTExceptionsManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFPSGraph.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFPSGraph.d
new file mode 100644
index 00000000..9ee1e9ba
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFPSGraph.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTFPSGraph.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTFPSGraph.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFPSGraph.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFPSGraph.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFPSGraph.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFPSGraph.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFPSGraph.o
new file mode 100644
index 00000000..c61933dc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFPSGraph.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFollyConvert.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFollyConvert.d
new file mode 100644
index 00000000..56783377
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFollyConvert.d
@@ -0,0 +1,373 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFollyConvert.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFollyConvert.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFollyConvert.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFollyConvert.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFollyConvert.o
new file mode 100644
index 00000000..4fc8f66e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFollyConvert.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFont.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFont.d
new file mode 100644
index 00000000..416486d2
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFont.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTFont.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTFont.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFont.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFont.dia
new file mode 100644
index 00000000..0b7cbf89
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFont.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFont.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFont.o
new file mode 100644
index 00000000..87dca3fc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFont.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFrameUpdate.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFrameUpdate.d
new file mode 100644
index 00000000..f61d8ef6
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFrameUpdate.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFrameUpdate.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFrameUpdate.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFrameUpdate.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFrameUpdate.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFrameUpdate.o
new file mode 100644
index 00000000..97d4169b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFrameUpdate.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nManager.d
new file mode 100644
index 00000000..aced3d6f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nManager.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nManager.o
new file mode 100644
index 00000000..c7ab333c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nUtil.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nUtil.d
new file mode 100644
index 00000000..46784f87
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nUtil.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nUtil.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nUtil.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nUtil.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nUtil.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nUtil.o
new file mode 100644
index 00000000..6b69e704
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nUtil.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTImageSource.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTImageSource.d
new file mode 100644
index 00000000..62c3bbbf
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTImageSource.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTImageSource.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTImageSource.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTImageSource.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTImageSource.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTImageSource.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTImageSource.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTImageSource.o
new file mode 100644
index 00000000..833feeb7
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTImageSource.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspector.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspector.d
new file mode 100644
index 00000000..413adb42
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspector.d
@@ -0,0 +1,12 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspector.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jsinspector/InspectorInterfaces.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../Libraries/WebSocket/RCTSRWebSocket.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspector.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspector.dia
new file mode 100644
index 00000000..2e07395f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspector.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspector.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspector.o
new file mode 100644
index 00000000..c1959c74
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspector.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorDevServerHelper.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorDevServerHelper.d
new file mode 100644
index 00000000..c0f9f36f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorDevServerHelper.d
@@ -0,0 +1,9 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTInspectorDevServerHelper.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTInspectorDevServerHelper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorDevServerHelper.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorDevServerHelper.dia
new file mode 100644
index 00000000..1e48dd93
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorDevServerHelper.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorDevServerHelper.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorDevServerHelper.o
new file mode 100644
index 00000000..08afa1a2
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorDevServerHelper.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorPackagerConnection.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorPackagerConnection.d
new file mode 100644
index 00000000..b16d462c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorPackagerConnection.d
@@ -0,0 +1,9 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../Libraries/WebSocket/RCTSRWebSocket.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorPackagerConnection.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorPackagerConnection.dia
new file mode 100644
index 00000000..a4009e4e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorPackagerConnection.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorPackagerConnection.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorPackagerConnection.o
new file mode 100644
index 00000000..06a3941b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorPackagerConnection.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCErrorHandling.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCErrorHandling.d
new file mode 100644
index 00000000..9c2f5c08
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCErrorHandling.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSCErrorHandling.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSCErrorHandling.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSStackFrame.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCErrorHandling.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCErrorHandling.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCErrorHandling.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCErrorHandling.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCErrorHandling.o
new file mode 100644
index 00000000..6cfaa6f2
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCErrorHandling.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCHelpers.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCHelpers.d
new file mode 100644
index 00000000..ba6d8e39
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCHelpers.d
@@ -0,0 +1,401 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTJSCHelpers.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTJSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/Platform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/MessageQueueThread.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCHelpers.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCHelpers.dia
new file mode 100644
index 00000000..3411b270
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCHelpers.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCHelpers.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCHelpers.o
new file mode 100644
index 00000000..12d3d986
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCHelpers.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCSamplingProfiler.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCSamplingProfiler.d
new file mode 100644
index 00000000..f9ff1120
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCSamplingProfiler.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTJSCSamplingProfiler.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTJSCSamplingProfiler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCSamplingProfiler.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCSamplingProfiler.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCSamplingProfiler.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCSamplingProfiler.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCSamplingProfiler.o
new file mode 100644
index 00000000..c09e47ca
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCSamplingProfiler.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSStackFrame.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSStackFrame.d
new file mode 100644
index 00000000..788eb565
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSStackFrame.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSStackFrame.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSStackFrame.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSStackFrame.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSStackFrame.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSStackFrame.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSStackFrame.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSStackFrame.o
new file mode 100644
index 00000000..668362be
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSStackFrame.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJavaScriptLoader.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJavaScriptLoader.d
new file mode 100644
index 00000000..7e9fbdef
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJavaScriptLoader.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSBundleType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartDataTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartStreamReader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJavaScriptLoader.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJavaScriptLoader.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJavaScriptLoader.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJavaScriptLoader.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJavaScriptLoader.o
new file mode 100644
index 00000000..723a8ad1
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJavaScriptLoader.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyCommands.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyCommands.d
new file mode 100644
index 00000000..d6b0fc9d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyCommands.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTKeyCommands.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTKeyCommands.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyCommands.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyCommands.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyCommands.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyCommands.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyCommands.o
new file mode 100644
index 00000000..111c7244
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyCommands.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyboardObserver.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyboardObserver.d
new file mode 100644
index 00000000..ad17c874
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyboardObserver.d
@@ -0,0 +1,12 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTKeyboardObserver.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTKeyboardObserver.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyboardObserver.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyboardObserver.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyboardObserver.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyboardObserver.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyboardObserver.o
new file mode 100644
index 00000000..1f70fc27
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyboardObserver.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayout.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayout.d
new file mode 100644
index 00000000..f6b9f904
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayout.d
@@ -0,0 +1,18 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.m \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayout.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayout.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayout.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayout.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayout.o
new file mode 100644
index 00000000..c7bc3261
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayout.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimation.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimation.d
new file mode 100644
index 00000000..69964202
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimation.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimation.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimation.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimation.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimation.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimation.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimation.o
new file mode 100644
index 00000000..6f83fb90
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimation.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimationGroup.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimationGroup.d
new file mode 100644
index 00000000..0171d8f8
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimationGroup.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimationGroup.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimationGroup.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimationGroup.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimationGroup.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimationGroup.o
new file mode 100644
index 00000000..e98a7456
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimationGroup.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLog.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLog.d
new file mode 100644
index 00000000..ca33d8d7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLog.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBox.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorCustomizer.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLog.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLog.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLog.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLog.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLog.o
new file mode 100644
index 00000000..b3738e81
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLog.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTManagedPointer.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTManagedPointer.d
new file mode 100644
index 00000000..4835ab32
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTManagedPointer.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTManagedPointer.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTManagedPointer.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTManagedPointer.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTManagedPointer.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTManagedPointer.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTManagedPointer.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTManagedPointer.o
new file mode 100644
index 00000000..e7e31d56
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTManagedPointer.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedView.d
new file mode 100644
index 00000000..64e04240
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedView.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTMaskedView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTMaskedView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedView.dia
new file mode 100644
index 00000000..4f4a8dd3
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedView.o
new file mode 100644
index 00000000..f7311303
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedViewManager.d
new file mode 100644
index 00000000..07e0f3ac
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedViewManager.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTMaskedViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTMaskedViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTMaskedView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedViewManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedViewManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedViewManager.o
new file mode 100644
index 00000000..c77e2dc2
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMessageThread.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMessageThread.d
new file mode 100644
index 00000000..bc28ab0e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMessageThread.d
@@ -0,0 +1,395 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTMessageThread.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTMessageThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMessageThread.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMessageThread.dia
new file mode 100644
index 00000000..8a1bd701
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMessageThread.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMessageThread.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMessageThread.o
new file mode 100644
index 00000000..bd350a36
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMessageThread.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostView.d
new file mode 100644
index 00000000..a2a6dc34
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostView.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostView.o
new file mode 100644
index 00000000..cec7d28c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewController.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewController.d
new file mode 100644
index 00000000..7a8d75a3
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewController.d
@@ -0,0 +1,28 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewController.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewController.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewController.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewController.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewController.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewController.o
new file mode 100644
index 00000000..91e9c035
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewController.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewManager.d
new file mode 100644
index 00000000..9c71eba2
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewManager.d
@@ -0,0 +1,33 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewManager.o
new file mode 100644
index 00000000..0dc71f60
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalManager.d
new file mode 100644
index 00000000..82a865e0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalManager.d
@@ -0,0 +1,11 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalManager.o
new file mode 100644
index 00000000..8ad4baf0
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleData.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleData.d
new file mode 100644
index 00000000..cdbf219a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleData.d
@@ -0,0 +1,18 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTNullability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleData.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleData.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleData.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleData.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleData.o
new file mode 100644
index 00000000..43d7eef2
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleData.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleMethod.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleMethod.d
new file mode 100644
index 00000000..00f87596
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleMethod.d
@@ -0,0 +1,28 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleMethod.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTNullability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTCxxConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTManagedPointer.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTParserUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleMethod.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleMethod.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleMethod.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleMethod.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleMethod.o
new file mode 100644
index 00000000..3ead1133
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleMethod.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartDataTask.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartDataTask.d
new file mode 100644
index 00000000..2fe0178d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartDataTask.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartDataTask.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartDataTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartStreamReader.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartDataTask.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartDataTask.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartDataTask.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartDataTask.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartDataTask.o
new file mode 100644
index 00000000..f2880ea3
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartDataTask.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartStreamReader.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartStreamReader.d
new file mode 100644
index 00000000..bf6c38af
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartStreamReader.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartStreamReader.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartStreamReader.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartStreamReader.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartStreamReader.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartStreamReader.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartStreamReader.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartStreamReader.o
new file mode 100644
index 00000000..a59b1022
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartStreamReader.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNativeModule.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNativeModule.d
new file mode 100644
index 00000000..dd49e838
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNativeModule.d
@@ -0,0 +1,402 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTNativeModule.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTNativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNativeModule.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNativeModule.dia
new file mode 100644
index 00000000..a5076a59
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNativeModule.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNativeModule.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNativeModule.o
new file mode 100644
index 00000000..572cefb6
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNativeModule.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItem.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItem.d
new file mode 100644
index 00000000..0c55217f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItem.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItem.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItem.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItem.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItem.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItem.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItem.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItem.o
new file mode 100644
index 00000000..4be477fb
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItem.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItemManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItemManager.d
new file mode 100644
index 00000000..3f85bc4d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItemManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItemManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItemManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItem.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItemManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItemManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItemManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItemManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItemManager.o
new file mode 100644
index 00000000..09b8f8a8
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItemManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigator.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigator.d
new file mode 100644
index 00000000..13aef66f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigator.d
@@ -0,0 +1,30 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavigator.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavigator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItem.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWrapperViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigator.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigator.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigator.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigator.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigator.o
new file mode 100644
index 00000000..6ea9e242
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigator.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigatorManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigatorManager.d
new file mode 100644
index 00000000..3564978a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigatorManager.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavigatorManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavigatorManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavigator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigatorManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigatorManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigatorManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigatorManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigatorManager.o
new file mode 100644
index 00000000..76ae10ac
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigatorManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTObjcExecutor.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTObjcExecutor.d
new file mode 100644
index 00000000..4a84bfbd
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTObjcExecutor.d
@@ -0,0 +1,401 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTObjcExecutor.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTObjcExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/RAMBundleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSModulesUnbundle.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTObjcExecutor.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTObjcExecutor.dia
new file mode 100644
index 00000000..a50184e8
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTObjcExecutor.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTObjcExecutor.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTObjcExecutor.o
new file mode 100644
index 00000000..a63a0f0f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTObjcExecutor.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerClient.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerClient.d
new file mode 100644
index 00000000..e3387030
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerClient.d
@@ -0,0 +1,8 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerClient.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerClient.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../Libraries/WebSocket/RCTReconnectingWebSocket.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerClient.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerClient.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerClient.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerClient.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerClient.o
new file mode 100644
index 00000000..38a06621
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerClient.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerConnection.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerConnection.d
new file mode 100644
index 00000000..9c55e405
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerConnection.d
@@ -0,0 +1,25 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerConnection.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerConnection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBundleURLProvider.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerClient.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../Libraries/WebSocket/RCTReconnectingWebSocket.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../Libraries/WebSocket/RCTSRWebSocket.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerConnection.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerConnection.dia
new file mode 100644
index 00000000..d65d57dd
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerConnection.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerConnection.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerConnection.o
new file mode 100644
index 00000000..3415c942
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerConnection.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTParserUtils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTParserUtils.d
new file mode 100644
index 00000000..cf5a34bf
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTParserUtils.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTParserUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTParserUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTParserUtils.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTParserUtils.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTParserUtils.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTParserUtils.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTParserUtils.o
new file mode 100644
index 00000000..604f45b2
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTParserUtils.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerfMonitor.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerfMonitor.d
new file mode 100644
index 00000000..3f4ef5a8
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerfMonitor.d
@@ -0,0 +1,32 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTPerfMonitor.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDevSettings.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTFPSGraph.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTDevMenu.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerfMonitor.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerfMonitor.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerfMonitor.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerfMonitor.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerfMonitor.o
new file mode 100644
index 00000000..46292643
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerfMonitor.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerformanceLogger.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerformanceLogger.d
new file mode 100644
index 00000000..e545ab14
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerformanceLogger.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerformanceLogger.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerformanceLogger.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerformanceLogger.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerformanceLogger.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerformanceLogger.o
new file mode 100644
index 00000000..d80ad071
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerformanceLogger.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPicker.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPicker.d
new file mode 100644
index 00000000..ccd61dfb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPicker.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPicker.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPicker.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPicker.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPicker.dia
new file mode 100644
index 00000000..9b59ac3b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPicker.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPicker.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPicker.o
new file mode 100644
index 00000000..7128cacc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPicker.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPickerManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPickerManager.d
new file mode 100644
index 00000000..d4b32f05
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPickerManager.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPickerManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPickerManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPicker.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTFont.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPickerManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPickerManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPickerManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPickerManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPickerManager.o
new file mode 100644
index 00000000..8a870cdf
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPickerManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPlatform.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPlatform.d
new file mode 100644
index 00000000..d4aa76ad
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPlatform.d
@@ -0,0 +1,8 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPlatform.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPlatform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTVersion.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPlatform.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPlatform.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPlatform.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPlatform.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPlatform.o
new file mode 100644
index 00000000..91678416
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPlatform.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfile.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfile.d
new file mode 100644
index 00000000..02168746
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfile.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponentData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfile.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfile.dia
new file mode 100644
index 00000000..80f51599
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfile.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfile.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfile.o
new file mode 100644
index 00000000..6b8dad03
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfile.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm.d
new file mode 100644
index 00000000..e0d66b9d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfileTrampoline-arm.S \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm.o
new file mode 100644
index 00000000..f6e75f11
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm64.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm64.d
new file mode 100644
index 00000000..2cc75ab7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm64.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfileTrampoline-arm64.S \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm64.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm64.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm64.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm64.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm64.o
new file mode 100644
index 00000000..4269fc7d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm64.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-i386.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-i386.d
new file mode 100644
index 00000000..29c503c5
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-i386.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfileTrampoline-i386.S \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-i386.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-i386.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-i386.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-i386.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-i386.o
new file mode 100644
index 00000000..6762e295
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-i386.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-x86_64.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-x86_64.d
new file mode 100644
index 00000000..545c912f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-x86_64.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfileTrampoline-x86_64.S \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-x86_64.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-x86_64.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-x86_64.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-x86_64.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-x86_64.o
new file mode 100644
index 00000000..47afba2f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-x86_64.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProgressViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProgressViewManager.d
new file mode 100644
index 00000000..5e4ac6e4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProgressViewManager.d
@@ -0,0 +1,25 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTProgressViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTProgressViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProgressViewManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProgressViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProgressViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProgressViewManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProgressViewManager.o
new file mode 100644
index 00000000..39457618
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProgressViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBox.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBox.d
new file mode 100644
index 00000000..70a80822
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBox.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBox.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBox.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorCustomizer.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorInfo.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSStackFrame.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBox.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBox.dia
new file mode 100644
index 00000000..f808d7d6
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBox.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBox.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBox.o
new file mode 100644
index 00000000..72d4dcd5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBox.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBoxExtraDataViewController.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBoxExtraDataViewController.d
new file mode 100644
index 00000000..226aa9fa
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBoxExtraDataViewController.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBoxExtraDataViewController.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBoxExtraDataViewController.dia
new file mode 100644
index 00000000..cb0db938
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBoxExtraDataViewController.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBoxExtraDataViewController.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBoxExtraDataViewController.o
new file mode 100644
index 00000000..827a4aa3
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBoxExtraDataViewController.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControl.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControl.d
new file mode 100644
index 00000000..2c666ca2
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControl.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRefreshControl.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRefreshControl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControl.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControl.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControl.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControl.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControl.o
new file mode 100644
index 00000000..4df7b7aa
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControl.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControlManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControlManager.d
new file mode 100644
index 00000000..127cb0c7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControlManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRefreshControlManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRefreshControlManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRefreshControl.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControlManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControlManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControlManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControlManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControlManager.o
new file mode 100644
index 00000000..d481907b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControlManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTReloadCommand.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTReloadCommand.d
new file mode 100644
index 00000000..5b05ac6b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTReloadCommand.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTReloadCommand.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTReloadCommand.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTKeyCommands.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTReloadCommand.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTReloadCommand.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTReloadCommand.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTReloadCommand.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTReloadCommand.o
new file mode 100644
index 00000000..3657aa16
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTReloadCommand.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootContentView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootContentView.d
new file mode 100644
index 00000000..a0555e28
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootContentView.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootContentView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootContentView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootViewInternal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootContentView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootContentView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootContentView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootContentView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootContentView.o
new file mode 100644
index 00000000..40ac8438
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootContentView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootShadowView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootShadowView.d
new file mode 100644
index 00000000..e9d21ccd
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootShadowView.d
@@ -0,0 +1,19 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRootShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRootShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootShadowView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootShadowView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootShadowView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootShadowView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootShadowView.o
new file mode 100644
index 00000000..0f65eb4d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootShadowView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootView.d
new file mode 100644
index 00000000..e5868b23
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootView.d
@@ -0,0 +1,36 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootViewDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootViewInternal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTKeyCommands.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootContentView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootView.o
new file mode 100644
index 00000000..0a215ee9
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaShadowView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaShadowView.d
new file mode 100644
index 00000000..f2adbb6f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaShadowView.d
@@ -0,0 +1,19 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaShadowView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaShadowView.dia
new file mode 100644
index 00000000..6f2a5858
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaShadowView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaShadowView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaShadowView.o
new file mode 100644
index 00000000..0ff08c1a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaShadowView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaView.d
new file mode 100644
index 00000000..43244ace
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaView.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaView.o
new file mode 100644
index 00000000..cdc05155
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewLocalData.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewLocalData.d
new file mode 100644
index 00000000..8f3cad4b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewLocalData.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewLocalData.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewLocalData.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewLocalData.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewLocalData.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewLocalData.o
new file mode 100644
index 00000000..cab58569
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewLocalData.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewManager.d
new file mode 100644
index 00000000..7d55dbd0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewManager.d
@@ -0,0 +1,32 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewManager.o
new file mode 100644
index 00000000..e75d6360
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentShadowView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentShadowView.d
new file mode 100644
index 00000000..dff0ffcb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentShadowView.d
@@ -0,0 +1,19 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentShadowView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentShadowView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentShadowView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentShadowView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentShadowView.o
new file mode 100644
index 00000000..4ef93040
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentShadowView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentView.d
new file mode 100644
index 00000000..48a25d7c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentView.d
@@ -0,0 +1,22 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentView.o
new file mode 100644
index 00000000..e411c2e8
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentViewManager.d
new file mode 100644
index 00000000..082ac78f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentViewManager.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentViewManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentViewManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentViewManager.o
new file mode 100644
index 00000000..ea80e792
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollView.d
new file mode 100644
index 00000000..765e89e0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollView.d
@@ -0,0 +1,34 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRefreshControl.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollView.dia
new file mode 100644
index 00000000..9dcc83a3
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollView.o
new file mode 100644
index 00000000..dd2070ed
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollViewManager.d
new file mode 100644
index 00000000..3851200d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollViewManager.d
@@ -0,0 +1,33 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollViewManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollViewManager.dia
new file mode 100644
index 00000000..f487b417
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollViewManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollViewManager.o
new file mode 100644
index 00000000..1d1398b9
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControl.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControl.d
new file mode 100644
index 00000000..f31ae8b0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControl.d
@@ -0,0 +1,24 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSegmentedControl.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSegmentedControl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControl.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControl.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControl.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControl.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControl.o
new file mode 100644
index 00000000..156afb9c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControl.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControlManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControlManager.d
new file mode 100644
index 00000000..af30137c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControlManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSegmentedControlManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSegmentedControlManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSegmentedControl.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControlManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControlManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControlManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControlManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControlManager.o
new file mode 100644
index 00000000..7cf2398b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControlManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Internal.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Internal.d
new file mode 100644
index 00000000..8131ad8a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Internal.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Internal.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Internal.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Internal.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Internal.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Internal.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Internal.o
new file mode 100644
index 00000000..ed72905f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Internal.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Layout.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Layout.d
new file mode 100644
index 00000000..7cc07f62
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Layout.d
@@ -0,0 +1,18 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Layout.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Layout.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Layout.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Layout.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Layout.o
new file mode 100644
index 00000000..97d02235
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Layout.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView.d
new file mode 100644
index 00000000..940869d9
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView.d
@@ -0,0 +1,28 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView.dia
new file mode 100644
index 00000000..33af9a2b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView.o
new file mode 100644
index 00000000..bc0380b8
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSlider.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSlider.d
new file mode 100644
index 00000000..c1d19b3d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSlider.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSlider.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSlider.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSlider.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSlider.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSlider.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSlider.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSlider.o
new file mode 100644
index 00000000..836ca22d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSlider.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSliderManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSliderManager.d
new file mode 100644
index 00000000..0179d0c6
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSliderManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSliderManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSliderManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSlider.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSliderManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSliderManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSliderManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSliderManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSliderManager.o
new file mode 100644
index 00000000..d8d07737
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSliderManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSourceCode.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSourceCode.d
new file mode 100644
index 00000000..dcef105f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSourceCode.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTSourceCode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTSourceCode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSourceCode.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSourceCode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSourceCode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSourceCode.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSourceCode.o
new file mode 100644
index 00000000..1e35d3ea
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSourceCode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTStatusBarManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTStatusBarManager.d
new file mode 100644
index 00000000..7361f3e0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTStatusBarManager.d
@@ -0,0 +1,23 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTStatusBarManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTStatusBarManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTStatusBarManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTStatusBarManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTStatusBarManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTStatusBarManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTStatusBarManager.o
new file mode 100644
index 00000000..fe1435c2
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTStatusBarManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurface.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurface.d
new file mode 100644
index 00000000..bd5feebc
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurface.d
@@ -0,0 +1,42 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurface.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurface.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceView+Internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurface.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurface.dia
new file mode 100644
index 00000000..3d9382a5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurface.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurface.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurface.o
new file mode 100644
index 00000000..038b7968
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurface.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceHostingView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceHostingView.d
new file mode 100644
index 00000000..820a19ed
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceHostingView.d
@@ -0,0 +1,11 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurface.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceHostingView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceHostingView.dia
new file mode 100644
index 00000000..f858e337
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceHostingView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceHostingView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceHostingView.o
new file mode 100644
index 00000000..c946050a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceHostingView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootShadowView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootShadowView.d
new file mode 100644
index 00000000..cad6d8ca
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootShadowView.d
@@ -0,0 +1,22 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootShadowView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootShadowView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootShadowView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootShadowView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootShadowView.o
new file mode 100644
index 00000000..e49741ea
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootShadowView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootView.d
new file mode 100644
index 00000000..987b9e9b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootView.d
@@ -0,0 +1,8 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootView.o
new file mode 100644
index 00000000..43582fcc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceSizeMeasureMode.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceSizeMeasureMode.d
new file mode 100644
index 00000000..49d32226
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceSizeMeasureMode.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceSizeMeasureMode.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceSizeMeasureMode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceSizeMeasureMode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceSizeMeasureMode.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceSizeMeasureMode.o
new file mode 100644
index 00000000..d7a6bacc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceSizeMeasureMode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceStage.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceStage.d
new file mode 100644
index 00000000..1c81b6eb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceStage.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceStage.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceStage.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceStage.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceStage.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceStage.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceStage.o
new file mode 100644
index 00000000..20a692e8
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceStage.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceView.d
new file mode 100644
index 00000000..a3099543
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceView.d
@@ -0,0 +1,12 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceView.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceView+Internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurface.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceView.o
new file mode 100644
index 00000000..a42d6d81
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitch.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitch.d
new file mode 100644
index 00000000..1a2c7771
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitch.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSwitch.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSwitch.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitch.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitch.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitch.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitch.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitch.o
new file mode 100644
index 00000000..824fca08
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitch.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitchManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitchManager.d
new file mode 100644
index 00000000..7d95c9a9
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitchManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSwitchManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSwitchManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSwitch.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitchManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitchManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitchManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitchManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitchManager.o
new file mode 100644
index 00000000..37a83c7c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitchManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBar.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBar.d
new file mode 100644
index 00000000..52e88e1f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBar.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBar.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBar.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarItem.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWrapperViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBar.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBar.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBar.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBar.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBar.o
new file mode 100644
index 00000000..6c6dbade
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBar.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItem.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItem.d
new file mode 100644
index 00000000..06150f31
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItem.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarItem.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarItem.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItem.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItem.dia
new file mode 100644
index 00000000..6ec477b9
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItem.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItem.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItem.o
new file mode 100644
index 00000000..33376e18
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItem.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItemManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItemManager.d
new file mode 100644
index 00000000..0e4e9d0a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItemManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarItemManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarItemManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarItem.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItemManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItemManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItemManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItemManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItemManager.o
new file mode 100644
index 00000000..e4caee73
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItemManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarManager.d
new file mode 100644
index 00000000..a1b5689a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarManager.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBar.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarManager.o
new file mode 100644
index 00000000..2c0e0710
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTiming.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTiming.d
new file mode 100644
index 00000000..1dbbeda4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTiming.d
@@ -0,0 +1,14 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTTiming.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTTiming.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTiming.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTiming.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTiming.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTiming.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTiming.o
new file mode 100644
index 00000000..bba1c22c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTiming.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchEvent.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchEvent.d
new file mode 100644
index 00000000..5a626dea
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchEvent.d
@@ -0,0 +1,12 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchEvent.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchEvent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchEvent.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchEvent.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchEvent.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchEvent.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchEvent.o
new file mode 100644
index 00000000..2bead9b0
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchEvent.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchHandler.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchHandler.d
new file mode 100644
index 00000000..e9619d25
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchHandler.d
@@ -0,0 +1,28 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchHandler.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchEvent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchHandler.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchHandler.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchHandler.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchHandler.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchHandler.o
new file mode 100644
index 00000000..f97dffab
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchHandler.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManager.d
new file mode 100644
index 00000000..53b3a234
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManager.d
@@ -0,0 +1,49 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAccessibilityManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponentData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTNullability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootContentView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRootShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootViewInternal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManager.dia
new file mode 100644
index 00000000..893d0761
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManager.o
new file mode 100644
index 00000000..260ac839
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerObserverCoordinator.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerObserverCoordinator.d
new file mode 100644
index 00000000..066aec79
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerObserverCoordinator.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerObserverCoordinator.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerObserverCoordinator.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerObserverCoordinator.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerObserverCoordinator.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerObserverCoordinator.o
new file mode 100644
index 00000000..563fe085
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerObserverCoordinator.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerUtils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerUtils.d
new file mode 100644
index 00000000..593d8c54
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerUtils.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerUtils.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerUtils.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerUtils.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerUtils.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerUtils.o
new file mode 100644
index 00000000..046e876b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerUtils.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIUtils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIUtils.d
new file mode 100644
index 00000000..2fb5b133
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIUtils.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/UIUtils/RCTUIUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/UIUtils/RCTUIUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIUtils.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIUtils.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIUtils.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIUtils.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIUtils.o
new file mode 100644
index 00000000..b047ca3b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIUtils.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUtils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUtils.d
new file mode 100644
index 00000000..9a5fefa1
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUtils.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUtils.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUtils.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUtils.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUtils.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUtils.o
new file mode 100644
index 00000000..870bb020
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUtils.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTVersion.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTVersion.d
new file mode 100644
index 00000000..185604fc
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTVersion.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTVersion.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTVersion.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTVersion.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTVersion.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTVersion.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTVersion.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTVersion.o
new file mode 100644
index 00000000..b0ec44b1
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTVersion.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTView.d
new file mode 100644
index 00000000..b67b761a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTView.d
@@ -0,0 +1,20 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderDrawing.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTView.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTView.o
new file mode 100644
index 00000000..147cf08e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTViewManager.d
new file mode 100644
index 00000000..58e6bd7f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTViewManager.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTConvert+Transform.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTViewManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTViewManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTViewManager.o
new file mode 100644
index 00000000..999b31a0
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebView.d
new file mode 100644
index 00000000..9008bcdf
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebView.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWebView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWebView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebView.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebView.dia
new file mode 100644
index 00000000..57fea143
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebView.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebView.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebView.o
new file mode 100644
index 00000000..82729d7e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebView.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebViewManager.d
new file mode 100644
index 00000000..63295e24
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebViewManager.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWebViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWebViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWebView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebViewManager.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebViewManager.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebViewManager.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebViewManager.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebViewManager.o
new file mode 100644
index 00000000..d5056ad7
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebViewManager.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWrapperViewController.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWrapperViewController.d
new file mode 100644
index 00000000..48a7dccb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWrapperViewController.d
@@ -0,0 +1,19 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWrapperViewController.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWrapperViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItem.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWrapperViewController.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWrapperViewController.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWrapperViewController.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWrapperViewController.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWrapperViewController.o
new file mode 100644
index 00000000..a305df84
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWrapperViewController.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/React.LinkFileList b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/React.LinkFileList
new file mode 100644
index 00000000..13bbd78f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/React.LinkFileList
@@ -0,0 +1,142 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxMethod.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerUtils.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Internal.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTStatusBarManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSourceCode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartStreamReader.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFrameUpdate.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceHostingView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxBridge.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAlertManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nUtil.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSStackFrame.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTObjcExecutor.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControl.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTExceptionsManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevMenu.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootShadowView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMultipartDataTask.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBorderDrawing.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxConvert.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePicker.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAssert.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManagerObserverCoordinator.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSlider.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFollyConvert.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAsyncLocalStorage.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorDevServerHelper.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevSettings.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceStage.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProgressViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFPSGraph.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerClient.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitch.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMessageThread.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurface.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaShadowView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDisplayLink.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSwitchManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTImageSource.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxUtils.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleMethod.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-x86_64.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventEmitter.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootShadowView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJavaScriptLoader.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTVersion.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerfMonitor.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimation.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTCxxModule.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentShadowView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm64.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-i386.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTFont.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCSamplingProfiler.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceRootView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTManagedPointer.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWrapperViewController.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTReloadCommand.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/JSCTracing.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspector.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAccessibilityManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDevLoadingView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTiming.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTAppState.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRootContentView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/UIView+React.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayout.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBoxExtraDataViewController.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSliderManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDeviceInfo.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/NSDataBigString.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTClipboard.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModuleData.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPerformanceLogger.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchHandler.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTErrorInfo.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLog.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItemManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTParserUtils.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaViewLocalData.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPlatform.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/InspectorInterfaces.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTScrollContentView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyboardObserver.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCHelpers.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTI18nManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPackagerConnection.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+CoreLocation.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItemManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTKeyCommands.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUtils.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTConvert+Transform.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControl.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTDatePickerManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBridge.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView+Layout.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTShadowView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTMaskedView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTWebViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPicker.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBarItem.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSurfaceSizeMeasureMode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/PrivateDataBase.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfileTrampoline-arm.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSegmentedControlManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTPickerManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRefreshControlManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTInspectorPackagerConnection.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTBundleURLProvider.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTActivityIndicatorView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTLayoutAnimationGroup.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigator.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTabBar.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTRedBox.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTJSCErrorHandling.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTSafeAreaView.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewController.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavItem.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTEventDispatcher.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalHostViewManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNativeModule.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTTouchEvent.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTProfile.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTComponentData.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTNavigatorManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTModalManager.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIUtils.o
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/UIView+React.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/UIView+React.d
new file mode 100644
index 00000000..dd5314ee
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/UIView+React.d
@@ -0,0 +1,20 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/UIView+React.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/UIView+React.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/UIView+React.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/UIView+React.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/UIView+React.o
new file mode 100644
index 00000000..36219742
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/UIView+React.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-generated-files.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-own-target-headers.hmap
new file mode 100644
index 00000000..f2e926b4
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-project-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-project-headers.hmap
new file mode 100644
index 00000000..334b96dc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React.hmap
new file mode 100644
index 00000000..05e6c6ee
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/React.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Script-006B79A01A781F38006873D1.sh b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Script-006B79A01A781F38006873D1.sh
new file mode 100755
index 00000000..2ac27b3d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Script-006B79A01A781F38006873D1.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+export RCT_METRO_PORT="${RCT_METRO_PORT:=8081}"
+echo "export RCT_METRO_PORT=${RCT_METRO_PORT}" > "${SRCROOT}/../scripts/.packager.env"
+if [ -z "${RCT_NO_LAUNCH_PACKAGER+xxx}" ] ; then
+ if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then
+ if ! curl -s "http://localhost:${RCT_METRO_PORT}/status" | grep -q "packager-status:running" ; then
+ echo "Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly"
+ exit 2
+ fi
+ else
+ open "$SRCROOT/../scripts/launchPackager.command" || echo "Can't start packager automatically"
+ fi
+fi
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Script-142C4F7F1B582EA6001F0B58.sh b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Script-142C4F7F1B582EA6001F0B58.sh
new file mode 100755
index 00000000..6a958ca1
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Script-142C4F7F1B582EA6001F0B58.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+if [[ "$CONFIGURATION" == "Debug" ]] && [[ -d "/tmp/RCTJSCProfiler" ]]; then
+ find "${CONFIGURATION_BUILD_DIR}" -name '*.app' | xargs -I{} sh -c 'cp -r /tmp/RCTJSCProfiler "$1"' -- {}
+fi
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/InspectorInterfaces.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/InspectorInterfaces.d
new file mode 100644
index 00000000..8ef514d2
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/InspectorInterfaces.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jsinspector/InspectorInterfaces.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jsinspector/InspectorInterfaces.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/InspectorInterfaces.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/InspectorInterfaces.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/InspectorInterfaces.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/JSCTracing.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/JSCTracing.d
new file mode 100644
index 00000000..0e29b5cf
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/JSCTracing.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCTracing.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCTracing.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/JSCTracing.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/JSCTracing.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/JSCTracing.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/NSDataBigString.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/NSDataBigString.d
new file mode 100644
index 00000000..57d56a85
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/NSDataBigString.d
@@ -0,0 +1,357 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/NSDataBigString.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/NSDataBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/NSDataBigString.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/NSDataBigString.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/NSDataBigString.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/PrivateDataBase.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/PrivateDataBase.d
new file mode 100644
index 00000000..1bcd0e0b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/PrivateDataBase.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/privatedata/PrivateDataBase.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/privatedata/PrivateDataBase.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/PrivateDataBase.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/PrivateDataBase.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/PrivateDataBase.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAccessibilityManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAccessibilityManager.d
new file mode 100644
index 00000000..56e5734f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAccessibilityManager.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAccessibilityManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAccessibilityManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAccessibilityManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAccessibilityManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAccessibilityManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTActivityIndicatorView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTActivityIndicatorView.d
new file mode 100644
index 00000000..60ed71d3
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTActivityIndicatorView.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTActivityIndicatorView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTActivityIndicatorView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTActivityIndicatorView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTActivityIndicatorView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTActivityIndicatorView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTActivityIndicatorViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTActivityIndicatorViewManager.d
new file mode 100644
index 00000000..655f4765
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTActivityIndicatorViewManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTActivityIndicatorView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTActivityIndicatorViewManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTActivityIndicatorViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTActivityIndicatorViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAlertManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAlertManager.d
new file mode 100644
index 00000000..44158541
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAlertManager.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAlertManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAlertManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAlertManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAlertManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAlertManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAppState.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAppState.d
new file mode 100644
index 00000000..f2cd8de6
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAppState.d
@@ -0,0 +1,14 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAppState.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAppState.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAppState.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAppState.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAppState.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAssert.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAssert.d
new file mode 100644
index 00000000..2286342c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAssert.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAssert.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAssert.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAssert.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAsyncLocalStorage.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAsyncLocalStorage.d
new file mode 100644
index 00000000..b46acae4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAsyncLocalStorage.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAsyncLocalStorage.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAsyncLocalStorage.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAsyncLocalStorage.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAsyncLocalStorage.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTAsyncLocalStorage.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBorderDrawing.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBorderDrawing.d
new file mode 100644
index 00000000..243cf00b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBorderDrawing.d
@@ -0,0 +1,8 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderDrawing.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderDrawing.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBorderDrawing.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBorderDrawing.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBorderDrawing.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBridge.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBridge.d
new file mode 100644
index 00000000..5da51e9f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBridge.d
@@ -0,0 +1,28 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTInspectorDevServerHelper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTReloadCommand.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBridge.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBridge.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBridge.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBundleURLProvider.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBundleURLProvider.d
new file mode 100644
index 00000000..6b9a12a0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBundleURLProvider.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBundleURLProvider.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBundleURLProvider.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBundleURLProvider.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBundleURLProvider.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTBundleURLProvider.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTClipboard.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTClipboard.d
new file mode 100644
index 00000000..90112921
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTClipboard.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTClipboard.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTClipboard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTClipboard.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTClipboard.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTClipboard.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTComponentData.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTComponentData.d
new file mode 100644
index 00000000..9bfa61ab
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTComponentData.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponentData.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponentData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTParserUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTComponentData.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTComponentData.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTComponentData.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert+CoreLocation.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert+CoreLocation.d
new file mode 100644
index 00000000..25b26711
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert+CoreLocation.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTConvert+CoreLocation.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTConvert+CoreLocation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert+CoreLocation.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert+CoreLocation.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert+CoreLocation.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert+Transform.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert+Transform.d
new file mode 100644
index 00000000..b77b2a70
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert+Transform.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTConvert+Transform.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTConvert+Transform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert+Transform.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert+Transform.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert+Transform.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert.d
new file mode 100644
index 00000000..4934394b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert.d
@@ -0,0 +1,16 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTImageSource.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTParserUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTConvert.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxBridge.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxBridge.d
new file mode 100644
index 00000000..e3ad46d1
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxBridge.d
@@ -0,0 +1,434 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTCxxBridge.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTCxxBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDevSettings.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDisplayLink.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBox.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorCustomizer.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/CxxNativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/CxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/Instance.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeToJsBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSBundleType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSIndexedRAMBundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSModulesUnbundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/Platform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/RAMBundleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/NSDataBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTJSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTMessageThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTObjcExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTDevLoadingView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxBridge.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxBridge.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxBridge.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxConvert.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxConvert.d
new file mode 100644
index 00000000..38a6b810
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxConvert.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTCxxConvert.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTCxxConvert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxConvert.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxConvert.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxConvert.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxMethod.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxMethod.d
new file mode 100644
index 00000000..efe39898
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxMethod.d
@@ -0,0 +1,413 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxMethod.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/CxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JsArgumentHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JsArgumentHelpers-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxMethod.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxMethod.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxMethod.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxModule.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxModule.d
new file mode 100644
index 00000000..988a823d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxModule.d
@@ -0,0 +1,387 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxModule.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/CxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxModule.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxModule.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxModule.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxUtils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxUtils.d
new file mode 100644
index 00000000..ac484684
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxUtils.d
@@ -0,0 +1,401 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/CxxNativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/CxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/DispatchMessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTNativeModule.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxUtils.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxUtils.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTCxxUtils.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDatePicker.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDatePicker.d
new file mode 100644
index 00000000..2f586b72
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDatePicker.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTDatePicker.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTDatePicker.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDatePicker.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDatePicker.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDatePicker.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDatePickerManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDatePickerManager.d
new file mode 100644
index 00000000..2f34c92e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDatePickerManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTDatePickerManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTDatePickerManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTDatePicker.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDatePickerManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDatePickerManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDatePickerManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevLoadingView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevLoadingView.d
new file mode 100644
index 00000000..125ae1ba
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevLoadingView.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTDevLoadingView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTDevLoadingView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevLoadingView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevLoadingView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevLoadingView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevMenu.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevMenu.d
new file mode 100644
index 00000000..f97bb3d1
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevMenu.d
@@ -0,0 +1,18 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTDevMenu.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTDevMenu.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDevSettings.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTKeyCommands.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTInspectorDevServerHelper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevMenu.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevMenu.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevMenu.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevSettings.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevSettings.d
new file mode 100644
index 00000000..bbc98deb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevSettings.d
@@ -0,0 +1,23 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDevSettings.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDevSettings.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTJSCSamplingProfiler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerClient.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerConnection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTInspectorDevServerHelper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevSettings.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevSettings.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDevSettings.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDeviceInfo.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDeviceInfo.d
new file mode 100644
index 00000000..aaed0132
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDeviceInfo.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDeviceInfo.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDeviceInfo.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAccessibilityManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/UIUtils/RCTUIUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDeviceInfo.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDeviceInfo.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDeviceInfo.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDisplayLink.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDisplayLink.d
new file mode 100644
index 00000000..52aab525
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDisplayLink.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDisplayLink.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDisplayLink.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDisplayLink.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDisplayLink.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTDisplayLink.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTErrorInfo.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTErrorInfo.d
new file mode 100644
index 00000000..c48b3cbd
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTErrorInfo.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorInfo.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorInfo.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSStackFrame.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTErrorInfo.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTErrorInfo.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTErrorInfo.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTEventDispatcher.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTEventDispatcher.d
new file mode 100644
index 00000000..075c1686
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTEventDispatcher.d
@@ -0,0 +1,14 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTEventDispatcher.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTEventDispatcher.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTEventDispatcher.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTEventEmitter.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTEventEmitter.d
new file mode 100644
index 00000000..e7d77733
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTEventEmitter.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTEventEmitter.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTEventEmitter.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTEventEmitter.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTExceptionsManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTExceptionsManager.d
new file mode 100644
index 00000000..2c225ec5
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTExceptionsManager.d
@@ -0,0 +1,24 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTExceptionsManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTExceptionsManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBox.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorCustomizer.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTExceptionsManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTExceptionsManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTExceptionsManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFPSGraph.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFPSGraph.d
new file mode 100644
index 00000000..9ee1e9ba
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFPSGraph.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTFPSGraph.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTFPSGraph.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFPSGraph.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFPSGraph.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFPSGraph.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFollyConvert.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFollyConvert.d
new file mode 100644
index 00000000..56783377
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFollyConvert.d
@@ -0,0 +1,373 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFollyConvert.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFollyConvert.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFollyConvert.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFont.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFont.d
new file mode 100644
index 00000000..416486d2
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFont.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTFont.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTFont.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFont.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFont.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFont.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFrameUpdate.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFrameUpdate.d
new file mode 100644
index 00000000..f61d8ef6
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFrameUpdate.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFrameUpdate.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFrameUpdate.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTFrameUpdate.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTI18nManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTI18nManager.d
new file mode 100644
index 00000000..aced3d6f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTI18nManager.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTI18nManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTI18nManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTI18nManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTI18nUtil.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTI18nUtil.d
new file mode 100644
index 00000000..46784f87
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTI18nUtil.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTI18nUtil.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTI18nUtil.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTI18nUtil.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTImageSource.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTImageSource.d
new file mode 100644
index 00000000..62c3bbbf
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTImageSource.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTImageSource.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTImageSource.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTImageSource.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTImageSource.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTImageSource.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspector.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspector.d
new file mode 100644
index 00000000..413adb42
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspector.d
@@ -0,0 +1,12 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspector.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jsinspector/InspectorInterfaces.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../Libraries/WebSocket/RCTSRWebSocket.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspector.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspector.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspector.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspectorDevServerHelper.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspectorDevServerHelper.d
new file mode 100644
index 00000000..c0f9f36f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspectorDevServerHelper.d
@@ -0,0 +1,9 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTInspectorDevServerHelper.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTInspectorDevServerHelper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspectorDevServerHelper.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspectorDevServerHelper.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspectorDevServerHelper.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspectorPackagerConnection.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspectorPackagerConnection.d
new file mode 100644
index 00000000..b16d462c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspectorPackagerConnection.d
@@ -0,0 +1,9 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspectorPackagerConnection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Inspector/RCTInspector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../Libraries/WebSocket/RCTSRWebSocket.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspectorPackagerConnection.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspectorPackagerConnection.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTInspectorPackagerConnection.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCErrorHandling.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCErrorHandling.d
new file mode 100644
index 00000000..9c2f5c08
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCErrorHandling.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSCErrorHandling.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSCErrorHandling.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSStackFrame.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCErrorHandling.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCErrorHandling.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCErrorHandling.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCHelpers.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCHelpers.d
new file mode 100644
index 00000000..ba6d8e39
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCHelpers.d
@@ -0,0 +1,401 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTJSCHelpers.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTJSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/Platform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/MessageQueueThread.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCHelpers.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCHelpers.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCHelpers.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCSamplingProfiler.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCSamplingProfiler.d
new file mode 100644
index 00000000..f9ff1120
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCSamplingProfiler.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTJSCSamplingProfiler.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTJSCSamplingProfiler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCSamplingProfiler.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCSamplingProfiler.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSCSamplingProfiler.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSStackFrame.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSStackFrame.d
new file mode 100644
index 00000000..788eb565
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSStackFrame.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSStackFrame.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSStackFrame.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSStackFrame.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSStackFrame.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJSStackFrame.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJavaScriptLoader.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJavaScriptLoader.d
new file mode 100644
index 00000000..7e9fbdef
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJavaScriptLoader.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSBundleType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartDataTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartStreamReader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJavaScriptLoader.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJavaScriptLoader.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTJavaScriptLoader.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTKeyCommands.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTKeyCommands.d
new file mode 100644
index 00000000..d6b0fc9d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTKeyCommands.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTKeyCommands.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTKeyCommands.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTKeyCommands.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTKeyCommands.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTKeyCommands.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTKeyboardObserver.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTKeyboardObserver.d
new file mode 100644
index 00000000..ad17c874
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTKeyboardObserver.d
@@ -0,0 +1,12 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTKeyboardObserver.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTKeyboardObserver.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTKeyboardObserver.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTKeyboardObserver.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTKeyboardObserver.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayout.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayout.d
new file mode 100644
index 00000000..f6b9f904
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayout.d
@@ -0,0 +1,18 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.m \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayout.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayout.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayout.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayoutAnimation.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayoutAnimation.d
new file mode 100644
index 00000000..69964202
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayoutAnimation.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimation.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayoutAnimation.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayoutAnimation.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayoutAnimation.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayoutAnimationGroup.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayoutAnimationGroup.d
new file mode 100644
index 00000000..0171d8f8
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayoutAnimationGroup.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayoutAnimationGroup.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayoutAnimationGroup.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLayoutAnimationGroup.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLog.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLog.d
new file mode 100644
index 00000000..ca33d8d7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLog.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBox.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorCustomizer.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLog.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLog.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTLog.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTManagedPointer.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTManagedPointer.d
new file mode 100644
index 00000000..4835ab32
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTManagedPointer.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTManagedPointer.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTManagedPointer.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTManagedPointer.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTManagedPointer.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTManagedPointer.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMaskedView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMaskedView.d
new file mode 100644
index 00000000..64e04240
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMaskedView.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTMaskedView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTMaskedView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMaskedView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMaskedView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMaskedView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMaskedViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMaskedViewManager.d
new file mode 100644
index 00000000..07e0f3ac
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMaskedViewManager.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTMaskedViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTMaskedViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTMaskedView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMaskedViewManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMaskedViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMaskedViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMessageThread.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMessageThread.d
new file mode 100644
index 00000000..bc28ab0e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMessageThread.d
@@ -0,0 +1,395 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTMessageThread.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTMessageThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMessageThread.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMessageThread.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMessageThread.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostView.d
new file mode 100644
index 00000000..a2a6dc34
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostView.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostViewController.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostViewController.d
new file mode 100644
index 00000000..7a8d75a3
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostViewController.d
@@ -0,0 +1,28 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewController.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostViewController.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostViewController.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostViewController.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostViewManager.d
new file mode 100644
index 00000000..9c71eba2
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostViewManager.d
@@ -0,0 +1,33 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalHostViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostViewManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalHostViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalManager.d
new file mode 100644
index 00000000..82a865e0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalManager.d
@@ -0,0 +1,11 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTModalManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModalManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModuleData.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModuleData.d
new file mode 100644
index 00000000..cdbf219a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModuleData.d
@@ -0,0 +1,18 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTNullability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModuleData.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModuleData.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModuleData.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModuleMethod.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModuleMethod.d
new file mode 100644
index 00000000..00f87596
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModuleMethod.d
@@ -0,0 +1,28 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleMethod.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTNullability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTCxxConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTManagedPointer.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTParserUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModuleMethod.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModuleMethod.plist
new file mode 100644
index 00000000..b82d7ae0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTModuleMethod.plist
@@ -0,0 +1,64 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleMethod.mm
+
+ diagnostics
+
+
+ path
+
+
+ kind event
+ location
+
+ line 547
+ col 3
+ file 0
+
+ ranges
+
+
+
+ line 547
+ col 11
+ file 0
+
+
+ line 547
+ col 11
+ file 0
+
+
+
+ depth 0
+ extended_message
+ Value stored to 'index' is never read
+ message
+ Value stored to 'index' is never read
+
+
+ description Value stored to 'index' is never read
+ category Dead store
+ type Dead assignment
+ check_name deadcode.DeadStores
+
+ issue_hash_content_of_line_in_context 8822872349fa2937812f9bce3676c1de
+ issue_context_kind Objective-C method
+ issue_context invokeWithBridge:module:arguments:
+ issue_hash_function_offset 65
+ location
+
+ line 547
+ col 3
+ file 0
+
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMultipartDataTask.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMultipartDataTask.d
new file mode 100644
index 00000000..2fe0178d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMultipartDataTask.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartDataTask.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartDataTask.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartStreamReader.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMultipartDataTask.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMultipartDataTask.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMultipartDataTask.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMultipartStreamReader.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMultipartStreamReader.d
new file mode 100644
index 00000000..bf6c38af
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMultipartStreamReader.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartStreamReader.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTMultipartStreamReader.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMultipartStreamReader.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMultipartStreamReader.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTMultipartStreamReader.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNativeModule.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNativeModule.d
new file mode 100644
index 00000000..dd49e838
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNativeModule.d
@@ -0,0 +1,402 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTNativeModule.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTNativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNativeModule.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNativeModule.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNativeModule.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavItem.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavItem.d
new file mode 100644
index 00000000..0c55217f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavItem.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItem.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItem.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavItem.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavItem.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavItem.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavItemManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavItemManager.d
new file mode 100644
index 00000000..3f85bc4d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavItemManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItemManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItemManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItem.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavItemManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavItemManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavItemManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavigator.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavigator.d
new file mode 100644
index 00000000..13aef66f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavigator.d
@@ -0,0 +1,30 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavigator.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavigator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItem.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWrapperViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavigator.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavigator.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavigator.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavigatorManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavigatorManager.d
new file mode 100644
index 00000000..3564978a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavigatorManager.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavigatorManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavigatorManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavigator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavigatorManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavigatorManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTNavigatorManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTObjcExecutor.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTObjcExecutor.d
new file mode 100644
index 00000000..4a84bfbd
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTObjcExecutor.d
@@ -0,0 +1,401 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTObjcExecutor.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxBridge/RCTObjcExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxModule/RCTCxxUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/CxxUtils/RCTFollyConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/RAMBundleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/cxxreact/JSModulesUnbundle.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTObjcExecutor.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTObjcExecutor.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTObjcExecutor.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPackagerClient.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPackagerClient.d
new file mode 100644
index 00000000..e3387030
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPackagerClient.d
@@ -0,0 +1,8 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerClient.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerClient.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../Libraries/WebSocket/RCTReconnectingWebSocket.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPackagerClient.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPackagerClient.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPackagerClient.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPackagerConnection.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPackagerConnection.d
new file mode 100644
index 00000000..9c55e405
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPackagerConnection.d
@@ -0,0 +1,25 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerConnection.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerConnection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBundleURLProvider.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTPackagerClient.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../Libraries/WebSocket/RCTReconnectingWebSocket.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../Libraries/WebSocket/RCTSRWebSocket.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPackagerConnection.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPackagerConnection.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPackagerConnection.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTParserUtils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTParserUtils.d
new file mode 100644
index 00000000..cf5a34bf
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTParserUtils.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTParserUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTParserUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTParserUtils.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTParserUtils.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTParserUtils.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPerfMonitor.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPerfMonitor.d
new file mode 100644
index 00000000..3f4ef5a8
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPerfMonitor.d
@@ -0,0 +1,32 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTPerfMonitor.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTDevSettings.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTFPSGraph.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/DevSupport/RCTDevMenu.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPerfMonitor.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPerfMonitor.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPerfMonitor.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPerformanceLogger.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPerformanceLogger.d
new file mode 100644
index 00000000..e545ab14
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPerformanceLogger.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPerformanceLogger.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPerformanceLogger.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPerformanceLogger.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPicker.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPicker.d
new file mode 100644
index 00000000..ccd61dfb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPicker.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPicker.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPicker.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPicker.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPicker.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPicker.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPickerManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPickerManager.d
new file mode 100644
index 00000000..d4b32f05
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPickerManager.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPickerManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPickerManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPicker.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTFont.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPickerManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPickerManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPickerManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPlatform.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPlatform.d
new file mode 100644
index 00000000..d4aa76ad
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPlatform.d
@@ -0,0 +1,8 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPlatform.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPlatform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTVersion.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPlatform.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPlatform.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTPlatform.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTProfile.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTProfile.d
new file mode 100644
index 00000000..02168746
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTProfile.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponentData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTProfile.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTProfile.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTProfile.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTProgressViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTProgressViewManager.d
new file mode 100644
index 00000000..5e4ac6e4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTProgressViewManager.d
@@ -0,0 +1,25 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTProgressViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTProgressViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTProgressViewManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTProgressViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTProgressViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRedBox.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRedBox.d
new file mode 100644
index 00000000..70a80822
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRedBox.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBox.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBox.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorCustomizer.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTErrorInfo.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJSStackFrame.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRedBox.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRedBox.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRedBox.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRedBoxExtraDataViewController.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRedBoxExtraDataViewController.d
new file mode 100644
index 00000000..226aa9fa
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRedBoxExtraDataViewController.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRedBoxExtraDataViewController.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRedBoxExtraDataViewController.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRedBoxExtraDataViewController.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRefreshControl.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRefreshControl.d
new file mode 100644
index 00000000..2c666ca2
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRefreshControl.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRefreshControl.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRefreshControl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRefreshControl.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRefreshControl.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRefreshControl.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRefreshControlManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRefreshControlManager.d
new file mode 100644
index 00000000..127cb0c7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRefreshControlManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRefreshControlManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRefreshControlManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRefreshControl.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRefreshControlManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRefreshControlManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRefreshControlManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTReloadCommand.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTReloadCommand.d
new file mode 100644
index 00000000..5b05ac6b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTReloadCommand.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTReloadCommand.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTReloadCommand.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTKeyCommands.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTReloadCommand.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTReloadCommand.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTReloadCommand.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootContentView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootContentView.d
new file mode 100644
index 00000000..a0555e28
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootContentView.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootContentView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootContentView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootViewInternal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootContentView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootContentView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootContentView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootShadowView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootShadowView.d
new file mode 100644
index 00000000..e9d21ccd
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootShadowView.d
@@ -0,0 +1,19 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRootShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRootShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootShadowView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootShadowView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootShadowView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootView.d
new file mode 100644
index 00000000..e5868b23
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootView.d
@@ -0,0 +1,36 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootViewDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootViewInternal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTKeyCommands.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTPerformanceLogger.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootContentView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTRootView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaShadowView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaShadowView.d
new file mode 100644
index 00000000..f2adbb6f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaShadowView.d
@@ -0,0 +1,19 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaShadowView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaShadowView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaShadowView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaView.d
new file mode 100644
index 00000000..43244ace
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaView.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaViewLocalData.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaViewLocalData.d
new file mode 100644
index 00000000..8f3cad4b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaViewLocalData.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaViewLocalData.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaViewLocalData.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaViewLocalData.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaViewManager.d
new file mode 100644
index 00000000..7d55dbd0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaViewManager.d
@@ -0,0 +1,32 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaViewManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSafeAreaViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentShadowView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentShadowView.d
new file mode 100644
index 00000000..dff0ffcb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentShadowView.d
@@ -0,0 +1,19 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentShadowView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentShadowView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentShadowView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentView.d
new file mode 100644
index 00000000..48a25d7c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentView.d
@@ -0,0 +1,22 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentViewManager.d
new file mode 100644
index 00000000..082ac78f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentViewManager.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentViewManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollContentViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollView.d
new file mode 100644
index 00000000..765e89e0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollView.d
@@ -0,0 +1,34 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRefreshControl.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollViewManager.d
new file mode 100644
index 00000000..3851200d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollViewManager.d
@@ -0,0 +1,33 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollViewManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTScrollViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSegmentedControl.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSegmentedControl.d
new file mode 100644
index 00000000..f31ae8b0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSegmentedControl.d
@@ -0,0 +1,24 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSegmentedControl.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSegmentedControl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSegmentedControl.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSegmentedControl.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSegmentedControl.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSegmentedControlManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSegmentedControlManager.d
new file mode 100644
index 00000000..af30137c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSegmentedControlManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSegmentedControlManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSegmentedControlManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSegmentedControl.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSegmentedControlManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSegmentedControlManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSegmentedControlManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView+Internal.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView+Internal.d
new file mode 100644
index 00000000..8131ad8a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView+Internal.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Internal.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView+Internal.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView+Internal.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView+Internal.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView+Layout.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView+Layout.d
new file mode 100644
index 00000000..7cc07f62
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView+Layout.d
@@ -0,0 +1,18 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView+Layout.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView+Layout.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView+Layout.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView.d
new file mode 100644
index 00000000..940869d9
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView.d
@@ -0,0 +1,28 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTShadowView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSlider.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSlider.d
new file mode 100644
index 00000000..c1d19b3d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSlider.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSlider.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSlider.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSlider.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSlider.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSlider.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSliderManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSliderManager.d
new file mode 100644
index 00000000..0179d0c6
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSliderManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSliderManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSliderManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSlider.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSliderManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSliderManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSliderManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSourceCode.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSourceCode.d
new file mode 100644
index 00000000..dcef105f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSourceCode.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTSourceCode.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTSourceCode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSourceCode.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSourceCode.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSourceCode.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTStatusBarManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTStatusBarManager.d
new file mode 100644
index 00000000..7361f3e0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTStatusBarManager.d
@@ -0,0 +1,23 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTStatusBarManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTStatusBarManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTEventEmitter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTStatusBarManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTStatusBarManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTStatusBarManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurface.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurface.d
new file mode 100644
index 00000000..bd5feebc
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurface.d
@@ -0,0 +1,42 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurface.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurface.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceView+Internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurface.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurface.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurface.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceHostingView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceHostingView.d
new file mode 100644
index 00000000..820a19ed
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceHostingView.d
@@ -0,0 +1,11 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurface.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceHostingView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceHostingView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceHostingView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceRootShadowView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceRootShadowView.d
new file mode 100644
index 00000000..cad6d8ca
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceRootShadowView.d
@@ -0,0 +1,22 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Layout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceRootShadowView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceRootShadowView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceRootShadowView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceRootView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceRootView.d
new file mode 100644
index 00000000..987b9e9b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceRootView.d
@@ -0,0 +1,8 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceRootView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceRootView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceRootView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceSizeMeasureMode.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceSizeMeasureMode.d
new file mode 100644
index 00000000..49d32226
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceSizeMeasureMode.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceSizeMeasureMode.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceSizeMeasureMode.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceSizeMeasureMode.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceStage.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceStage.d
new file mode 100644
index 00000000..1c81b6eb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceStage.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceStage.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceStage.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceStage.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceStage.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceView.d
new file mode 100644
index 00000000..a3099543
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceView.d
@@ -0,0 +1,12 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceView.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceView+Internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurface.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSurfaceView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSwitch.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSwitch.d
new file mode 100644
index 00000000..1a2c7771
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSwitch.d
@@ -0,0 +1,15 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSwitch.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSwitch.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSwitch.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSwitch.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSwitch.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSwitchManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSwitchManager.d
new file mode 100644
index 00000000..7d95c9a9
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSwitchManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSwitchManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSwitchManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTSwitch.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSwitchManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSwitchManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTSwitchManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBar.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBar.d
new file mode 100644
index 00000000..52e88e1f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBar.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBar.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBar.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarItem.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWrapperViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBar.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBar.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBar.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarItem.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarItem.d
new file mode 100644
index 00000000..06150f31
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarItem.d
@@ -0,0 +1,17 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarItem.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarItem.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarItem.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarItem.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarItem.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarItemManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarItemManager.d
new file mode 100644
index 00000000..0e4e9d0a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarItemManager.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarItemManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarItemManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarItem.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarItemManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarItemManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarItemManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarManager.d
new file mode 100644
index 00000000..a1b5689a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarManager.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBarManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTabBar.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTabBarManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTiming.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTiming.d
new file mode 100644
index 00000000..1dbbeda4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTiming.d
@@ -0,0 +1,14 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTTiming.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTTiming.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTiming.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTiming.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTiming.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTouchEvent.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTouchEvent.d
new file mode 100644
index 00000000..5a626dea
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTouchEvent.d
@@ -0,0 +1,12 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchEvent.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchEvent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTouchEvent.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTouchEvent.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTouchEvent.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTouchHandler.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTouchHandler.d
new file mode 100644
index 00000000..e9619d25
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTouchHandler.d
@@ -0,0 +1,28 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchHandler.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchHandler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTTouchEvent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTouchHandler.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTouchHandler.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTTouchHandler.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManager.d
new file mode 100644
index 00000000..53b3a234
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManager.d
@@ -0,0 +1,49 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTAccessibilityManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge+Private.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponentData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimation.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleData.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTModuleMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeMethod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTNullability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Profiler/RCTProfile.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootContentView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTRootShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootViewInternal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView+Internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManagerObserverCoordinator.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManagerObserverCoordinator.d
new file mode 100644
index 00000000..066aec79
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManagerObserverCoordinator.d
@@ -0,0 +1,27 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.mm \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManagerObserverCoordinator.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManagerObserverCoordinator.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManagerObserverCoordinator.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManagerUtils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManagerUtils.d
new file mode 100644
index 00000000..593d8c54
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManagerUtils.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManagerUtils.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManagerUtils.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIManagerUtils.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIUtils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIUtils.d
new file mode 100644
index 00000000..2fb5b133
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIUtils.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/UIUtils/RCTUIUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/UIUtils/RCTUIUtils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIUtils.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIUtils.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUIUtils.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUtils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUtils.d
new file mode 100644
index 00000000..9a5fefa1
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUtils.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUtils.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUtils.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTUtils.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTVersion.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTVersion.d
new file mode 100644
index 00000000..185604fc
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTVersion.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTVersion.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTVersion.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTVersion.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTVersion.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTVersion.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTView.d
new file mode 100644
index 00000000..b67b761a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTView.d
@@ -0,0 +1,20 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderDrawing.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTI18nUtil.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTViewManager.d
new file mode 100644
index 00000000..58e6bd7f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTViewManager.d
@@ -0,0 +1,31 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManagerUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTConvert+Transform.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTViewManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWebView.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWebView.d
new file mode 100644
index 00000000..9008bcdf
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWebView.d
@@ -0,0 +1,26 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWebView.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWebView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWebView.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWebView.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWebView.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWebViewManager.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWebViewManager.d
new file mode 100644
index 00000000..63295e24
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWebViewManager.d
@@ -0,0 +1,29 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWebViewManager.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWebViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTViewManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTConvert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAnimationType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTBorderStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTPointerEvents.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTTextDecorationLineType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Modules/RCTUIManager.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWebView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTView.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWebViewManager.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWebViewManager.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWebViewManager.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWrapperViewController.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWrapperViewController.d
new file mode 100644
index 00000000..48a7dccb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWrapperViewController.d
@@ -0,0 +1,19 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWrapperViewController.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTWrapperViewController.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTEventDispatcher.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTNavItem.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWrapperViewController.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWrapperViewController.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/RCTWrapperViewController.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/UIView+React.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/UIView+React.d
new file mode 100644
index 00000000..dd5314ee
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/UIView+React.d
@@ -0,0 +1,20 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.m \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/UIView+React.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTComponent.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTShadowView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Views/RCTLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/Base/RCTInvalidating.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/UIView+React.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/UIView+React.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/StaticAnalyzer/React/React/normal/x86_64/UIView+React.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/dgph b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/dgph
new file mode 100644
index 00000000..b140cc24
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/dgph~ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/dgph~
new file mode 100644
index 00000000..a700e7fc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/CxxNativeModule.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/CxxNativeModule.d
new file mode 100644
index 00000000..b2b646ef
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/CxxNativeModule.d
@@ -0,0 +1,394 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/CxxNativeModule.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/CxxNativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/CxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Instance.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeToJsBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JsArgumentHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JsArgumentHelpers-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SystraceSection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MessageQueueThread.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/CxxNativeModule.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/CxxNativeModule.dia
new file mode 100644
index 00000000..9bb0ab6a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/CxxNativeModule.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/CxxNativeModule.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/CxxNativeModule.o
new file mode 100644
index 00000000..006e613f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/CxxNativeModule.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Instance.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Instance.d
new file mode 100644
index 00000000..96ae3830
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Instance.d
@@ -0,0 +1,399 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Instance.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Instance.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeToJsBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBundleType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MethodCall.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RAMBundleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSModulesUnbundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RecoverableError.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SystraceSection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSIndexedRAMBundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/MoveWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Instance.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Instance.dia
new file mode 100644
index 00000000..7dbabf3b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Instance.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Instance.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Instance.o
new file mode 100644
index 00000000..88fe3f6d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Instance.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBigString.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBigString.d
new file mode 100644
index 00000000..ddf0856c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBigString.d
@@ -0,0 +1,359 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBigString.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBigString.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBigString.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBigString.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBigString.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBigString.o
new file mode 100644
index 00000000..0dc56e07
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBigString.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBundleType.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBundleType.d
new file mode 100644
index 00000000..f5b179cb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBundleType.d
@@ -0,0 +1,217 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBundleType.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBundleType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBundleType.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBundleType.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBundleType.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBundleType.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBundleType.o
new file mode 100644
index 00000000..0817b135
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBundleType.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCExecutor.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCExecutor.d
new file mode 100644
index 00000000..eb30077e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCExecutor.d
@@ -0,0 +1,402 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCExecutor.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jsinspector/InspectorInterfaces.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBundleType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCLegacyTracing.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCMemory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCPerfStats.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCSamplingProfiler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCTracing.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSModulesUnbundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Platform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RAMBundleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RecoverableError.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SystraceSection.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCExecutor.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCExecutor.dia
new file mode 100644
index 00000000..53dd9a48
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCExecutor.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCExecutor.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCExecutor.o
new file mode 100644
index 00000000..a19273c9
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCExecutor.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCLegacyTracing.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCLegacyTracing.d
new file mode 100644
index 00000000..3c7fe31f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCLegacyTracing.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCLegacyTracing.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCLegacyTracing.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCLegacyTracing.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCLegacyTracing.dia
new file mode 100644
index 00000000..3b399428
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCLegacyTracing.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCLegacyTracing.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCLegacyTracing.o
new file mode 100644
index 00000000..aede0632
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCLegacyTracing.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCMemory.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCMemory.d
new file mode 100644
index 00000000..410d65b4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCMemory.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCMemory.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCMemory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCMemory.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCMemory.dia
new file mode 100644
index 00000000..4256b7c0
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCMemory.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCMemory.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCMemory.o
new file mode 100644
index 00000000..5a441aad
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCMemory.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCNativeModules.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCNativeModules.d
new file mode 100644
index 00000000..c978944f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCNativeModules.d
@@ -0,0 +1,385 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCNativeModules.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Platform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/MessageQueueThread.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCNativeModules.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCNativeModules.dia
new file mode 100644
index 00000000..579bc1b8
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCNativeModules.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCNativeModules.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCNativeModules.o
new file mode 100644
index 00000000..912b074f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCNativeModules.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCPerfStats.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCPerfStats.d
new file mode 100644
index 00000000..a89c25ee
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCPerfStats.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCPerfStats.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCPerfStats.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCPerfStats.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCPerfStats.dia
new file mode 100644
index 00000000..8b2bffa2
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCPerfStats.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCPerfStats.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCPerfStats.o
new file mode 100644
index 00000000..d39d9788
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCPerfStats.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCSamplingProfiler.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCSamplingProfiler.d
new file mode 100644
index 00000000..c323a403
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCSamplingProfiler.d
@@ -0,0 +1,380 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCSamplingProfiler.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCSamplingProfiler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCSamplingProfiler.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCSamplingProfiler.dia
new file mode 100644
index 00000000..4168c14a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCSamplingProfiler.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCSamplingProfiler.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCSamplingProfiler.o
new file mode 100644
index 00000000..de0526ce
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCSamplingProfiler.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCUtils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCUtils.d
new file mode 100644
index 00000000..6e70eb18
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCUtils.d
@@ -0,0 +1,380 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCUtils.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCUtils.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCUtils.dia
new file mode 100644
index 00000000..4096da15
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCUtils.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCUtils.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCUtils.o
new file mode 100644
index 00000000..f8771357
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCUtils.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSIndexedRAMBundle.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSIndexedRAMBundle.d
new file mode 100644
index 00000000..ebd6cc71
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSIndexedRAMBundle.d
@@ -0,0 +1,360 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSIndexedRAMBundle.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSIndexedRAMBundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSModulesUnbundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSIndexedRAMBundle.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSIndexedRAMBundle.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSIndexedRAMBundle.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSIndexedRAMBundle.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSIndexedRAMBundle.o
new file mode 100644
index 00000000..a3274ee0
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSIndexedRAMBundle.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/MethodCall.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/MethodCall.d
new file mode 100644
index 00000000..7c9df9b8
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/MethodCall.d
@@ -0,0 +1,374 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MethodCall.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MethodCall.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/MethodCall.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/MethodCall.dia
new file mode 100644
index 00000000..89360c99
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/MethodCall.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/MethodCall.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/MethodCall.o
new file mode 100644
index 00000000..e6f54d95
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/MethodCall.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/ModuleRegistry.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/ModuleRegistry.d
new file mode 100644
index 00000000..6b7eacb7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/ModuleRegistry.d
@@ -0,0 +1,377 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/ModuleRegistry.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SystraceSection.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/ModuleRegistry.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/ModuleRegistry.dia
new file mode 100644
index 00000000..e5624285
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/ModuleRegistry.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/ModuleRegistry.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/ModuleRegistry.o
new file mode 100644
index 00000000..7bcfb73f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/ModuleRegistry.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/NativeToJsBridge.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/NativeToJsBridge.d
new file mode 100644
index 00000000..ebaee0f5
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/NativeToJsBridge.d
@@ -0,0 +1,396 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/NativeToJsBridge.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/NativeToJsBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/MoveWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Instance.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SystraceSection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MethodCall.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RAMBundleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSModulesUnbundle.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/NativeToJsBridge.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/NativeToJsBridge.dia
new file mode 100644
index 00000000..bff151a6
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/NativeToJsBridge.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/NativeToJsBridge.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/NativeToJsBridge.o
new file mode 100644
index 00000000..340befc6
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/NativeToJsBridge.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Platform.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Platform.d
new file mode 100644
index 00000000..ac098aae
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Platform.d
@@ -0,0 +1,379 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Platform.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Platform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Platform.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Platform.dia
new file mode 100644
index 00000000..2713ee93
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Platform.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Platform.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Platform.o
new file mode 100644
index 00000000..974ab49e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Platform.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/RAMBundleRegistry.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/RAMBundleRegistry.d
new file mode 100644
index 00000000..c129a788
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/RAMBundleRegistry.d
@@ -0,0 +1,254 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RAMBundleRegistry.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RAMBundleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSModulesUnbundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/RAMBundleRegistry.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/RAMBundleRegistry.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/RAMBundleRegistry.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/RAMBundleRegistry.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/RAMBundleRegistry.o
new file mode 100644
index 00000000..00ec3d32
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/RAMBundleRegistry.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/SampleCxxModule.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/SampleCxxModule.d
new file mode 100644
index 00000000..02d39e3e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/SampleCxxModule.d
@@ -0,0 +1,377 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SampleCxxModule.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SampleCxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/CxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JsArgumentHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JsArgumentHelpers-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/SampleCxxModule.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/SampleCxxModule.dia
new file mode 100644
index 00000000..018d709f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/SampleCxxModule.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/SampleCxxModule.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/SampleCxxModule.o
new file mode 100644
index 00000000..5f99cc60
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/SampleCxxModule.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/cxxreact.LinkFileList b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/cxxreact.LinkFileList
new file mode 100644
index 00000000..ad2a90d0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/cxxreact.LinkFileList
@@ -0,0 +1,18 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBigString.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSIndexedRAMBundle.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/ModuleRegistry.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/RAMBundleRegistry.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/CxxNativeModule.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCExecutor.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCLegacyTracing.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCPerfStats.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSBundleType.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCUtils.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCSamplingProfiler.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCMemory.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/MethodCall.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Platform.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/Instance.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/NativeToJsBridge.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/JSCNativeModules.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/Objects-normal/x86_64/SampleCxxModule.o
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/CxxNativeModule.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/CxxNativeModule.d
new file mode 100644
index 00000000..b2b646ef
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/CxxNativeModule.d
@@ -0,0 +1,394 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/CxxNativeModule.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/CxxNativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/CxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Instance.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeToJsBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JsArgumentHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JsArgumentHelpers-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SystraceSection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MessageQueueThread.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/CxxNativeModule.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/CxxNativeModule.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/CxxNativeModule.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/Instance.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/Instance.d
new file mode 100644
index 00000000..96ae3830
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/Instance.d
@@ -0,0 +1,399 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Instance.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Instance.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeToJsBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBundleType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MethodCall.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RAMBundleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSModulesUnbundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RecoverableError.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SystraceSection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSIndexedRAMBundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/MoveWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/Instance.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/Instance.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/Instance.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSBigString.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSBigString.d
new file mode 100644
index 00000000..ddf0856c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSBigString.d
@@ -0,0 +1,359 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBigString.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSBigString.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSBigString.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSBigString.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSBundleType.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSBundleType.d
new file mode 100644
index 00000000..f5b179cb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSBundleType.d
@@ -0,0 +1,217 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBundleType.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBundleType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSBundleType.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSBundleType.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSBundleType.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCExecutor.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCExecutor.d
new file mode 100644
index 00000000..eb30077e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCExecutor.d
@@ -0,0 +1,402 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCExecutor.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jsinspector/InspectorInterfaces.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBundleType.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCLegacyTracing.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCMemory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCPerfStats.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCSamplingProfiler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCTracing.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSModulesUnbundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Platform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RAMBundleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RecoverableError.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SystraceSection.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCExecutor.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCExecutor.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCExecutor.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCLegacyTracing.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCLegacyTracing.d
new file mode 100644
index 00000000..3c7fe31f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCLegacyTracing.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCLegacyTracing.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCLegacyTracing.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCLegacyTracing.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCLegacyTracing.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCLegacyTracing.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCMemory.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCMemory.d
new file mode 100644
index 00000000..410d65b4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCMemory.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCMemory.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCMemory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCMemory.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCMemory.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCMemory.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCNativeModules.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCNativeModules.d
new file mode 100644
index 00000000..c978944f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCNativeModules.d
@@ -0,0 +1,385 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCNativeModules.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Platform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/MessageQueueThread.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCNativeModules.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCNativeModules.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCNativeModules.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCPerfStats.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCPerfStats.d
new file mode 100644
index 00000000..a89c25ee
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCPerfStats.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCPerfStats.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCPerfStats.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCPerfStats.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCPerfStats.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCPerfStats.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCSamplingProfiler.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCSamplingProfiler.d
new file mode 100644
index 00000000..c323a403
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCSamplingProfiler.d
@@ -0,0 +1,380 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCSamplingProfiler.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCSamplingProfiler.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCSamplingProfiler.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCSamplingProfiler.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCSamplingProfiler.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCUtils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCUtils.d
new file mode 100644
index 00000000..6e70eb18
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCUtils.d
@@ -0,0 +1,380 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCUtils.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSCUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCUtils.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCUtils.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSCUtils.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSIndexedRAMBundle.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSIndexedRAMBundle.d
new file mode 100644
index 00000000..ebd6cc71
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSIndexedRAMBundle.d
@@ -0,0 +1,360 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSIndexedRAMBundle.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSIndexedRAMBundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSModulesUnbundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSIndexedRAMBundle.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSIndexedRAMBundle.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/JSIndexedRAMBundle.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/MethodCall.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/MethodCall.d
new file mode 100644
index 00000000..7c9df9b8
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/MethodCall.d
@@ -0,0 +1,374 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MethodCall.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MethodCall.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/MethodCall.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/MethodCall.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/MethodCall.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/ModuleRegistry.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/ModuleRegistry.d
new file mode 100644
index 00000000..6b7eacb7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/ModuleRegistry.d
@@ -0,0 +1,377 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/ModuleRegistry.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SystraceSection.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/ModuleRegistry.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/ModuleRegistry.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/ModuleRegistry.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/NativeToJsBridge.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/NativeToJsBridge.d
new file mode 100644
index 00000000..ebaee0f5
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/NativeToJsBridge.d
@@ -0,0 +1,396 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/NativeToJsBridge.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/NativeToJsBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSCNativeModules.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/ModuleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/MoveWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Instance.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/JSBigString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SystraceSection.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MethodCall.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RAMBundleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSModulesUnbundle.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/NativeToJsBridge.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/NativeToJsBridge.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/NativeToJsBridge.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/Platform.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/Platform.d
new file mode 100644
index 00000000..ac098aae
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/Platform.d
@@ -0,0 +1,379 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Platform.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/Platform.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSExecutor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/NativeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Optional.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/MessageQueueThread.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/JSCWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/Platform.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/Platform.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/Platform.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/RAMBundleRegistry.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/RAMBundleRegistry.d
new file mode 100644
index 00000000..c129a788
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/RAMBundleRegistry.d
@@ -0,0 +1,254 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RAMBundleRegistry.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/RAMBundleRegistry.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JSModulesUnbundle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/RAMBundleRegistry.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/RAMBundleRegistry.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/RAMBundleRegistry.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/SampleCxxModule.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/SampleCxxModule.d
new file mode 100644
index 00000000..02d39e3e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/SampleCxxModule.d
@@ -0,0 +1,377 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SampleCxxModule.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/cxxreact/SampleCxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/CxxModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JsArgumentHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/cxxreact/JsArgumentHelpers-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Memory.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/SampleCxxModule.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/SampleCxxModule.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/StaticAnalyzer/React/cxxreact/normal/x86_64/SampleCxxModule.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-generated-files.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-own-target-headers.hmap
new file mode 100644
index 00000000..b49b1ec1
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-project-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-project-headers.hmap
new file mode 100644
index 00000000..334b96dc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact.hmap
new file mode 100644
index 00000000..2b2a5496
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/cxxreact.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/dgph b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/dgph
new file mode 100644
index 00000000..b2ccfda8
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/dgph~ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/dgph~
new file mode 100644
index 00000000..a700e7fc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/cxxreact.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum-dtoa.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum-dtoa.d
new file mode 100644
index 00000000..5146e009
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum-dtoa.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/bignum-dtoa.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/bignum-dtoa.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/bignum.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/ieee.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/diy-fp.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum-dtoa.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum-dtoa.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum-dtoa.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum-dtoa.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum-dtoa.o
new file mode 100644
index 00000000..4cc69085
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum-dtoa.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum.d
new file mode 100644
index 00000000..90345a79
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/bignum.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/bignum.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/utils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum.o
new file mode 100644
index 00000000..6d083936
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/cached-powers.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/cached-powers.d
new file mode 100644
index 00000000..a56ab089
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/cached-powers.d
@@ -0,0 +1,5 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/cached-powers.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/cached-powers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/diy-fp.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/cached-powers.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/cached-powers.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/cached-powers.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/cached-powers.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/cached-powers.o
new file mode 100644
index 00000000..2ccfe0d1
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/cached-powers.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/diy-fp.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/diy-fp.d
new file mode 100644
index 00000000..f4629e10
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/diy-fp.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/diy-fp.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/diy-fp.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/utils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/diy-fp.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/diy-fp.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/diy-fp.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/diy-fp.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/diy-fp.o
new file mode 100644
index 00000000..28ad8333
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/diy-fp.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.LinkFileList b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.LinkFileList
new file mode 100644
index 00000000..92c76403
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.LinkFileList
@@ -0,0 +1,8 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum-dtoa.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/bignum.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/cached-powers.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/diy-fp.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fast-dtoa.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fixed-dtoa.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/strtod.o
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.d
new file mode 100644
index 00000000..d7d2afd4
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/double-conversion.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/bignum-dtoa.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/fast-dtoa.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/fixed-dtoa.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/ieee.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/diy-fp.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/strtod.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.dia
new file mode 100644
index 00000000..87fb9dfe
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.o
new file mode 100644
index 00000000..a3a75ca7
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/double-conversion.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fast-dtoa.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fast-dtoa.d
new file mode 100644
index 00000000..86f1d7a9
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fast-dtoa.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/fast-dtoa.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/fast-dtoa.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/cached-powers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/diy-fp.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/ieee.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fast-dtoa.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fast-dtoa.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fast-dtoa.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fast-dtoa.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fast-dtoa.o
new file mode 100644
index 00000000..2619fe3c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fast-dtoa.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fixed-dtoa.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fixed-dtoa.d
new file mode 100644
index 00000000..d17f4b2a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fixed-dtoa.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/fixed-dtoa.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/fixed-dtoa.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/ieee.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/diy-fp.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fixed-dtoa.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fixed-dtoa.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fixed-dtoa.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fixed-dtoa.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fixed-dtoa.o
new file mode 100644
index 00000000..b55f9a74
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/fixed-dtoa.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/strtod.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/strtod.d
new file mode 100644
index 00000000..2911ac88
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/strtod.d
@@ -0,0 +1,8 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/strtod.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/strtod.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/bignum.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/cached-powers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/diy-fp.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/double-conversion-1.1.5/src/ieee.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/strtod.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/strtod.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/strtod.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/strtod.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/strtod.o
new file mode 100644
index 00000000..a0a57dc9
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/strtod.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Script-190EE32F1E6A43DE00A8543A.sh b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Script-190EE32F1E6A43DE00A8543A.sh
new file mode 100755
index 00000000..9faf3cee
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Script-190EE32F1E6A43DE00A8543A.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+cd "$SRCROOT/.."
+exec ./scripts/ios-install-third-party.sh
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/dgph b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/dgph
new file mode 100644
index 00000000..1a8d3303
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/dgph~ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/dgph~
new file mode 100644
index 00000000..a700e7fc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-generated-files.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-own-target-headers.hmap
new file mode 100644
index 00000000..1b11847f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-project-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-project-headers.hmap
new file mode 100644
index 00000000..334b96dc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion.hmap
new file mode 100644
index 00000000..7c5ffef1
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/double-conversion.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCHelpers.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCHelpers.d
new file mode 100644
index 00000000..128d2dde
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCHelpers.d
@@ -0,0 +1,379 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/JSCHelpers.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCHelpers.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCHelpers.dia
new file mode 100644
index 00000000..e3040109
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCHelpers.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCHelpers.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCHelpers.o
new file mode 100644
index 00000000..4e335f3b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCHelpers.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCWrapper.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCWrapper.d
new file mode 100644
index 00000000..ee6c2b9c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCWrapper.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/JSCWrapper.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCWrapper.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCWrapper.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCWrapper.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCWrapper.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCWrapper.o
new file mode 100644
index 00000000..75a6e42a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCWrapper.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Unicode.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Unicode.d
new file mode 100644
index 00000000..cad914f7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Unicode.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/Unicode.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/Unicode.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Unicode.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Unicode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Unicode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Unicode.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Unicode.o
new file mode 100644
index 00000000..b37929f5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Unicode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Value.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Value.d
new file mode 100644
index 00000000..8989dde8
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Value.d
@@ -0,0 +1,380 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/Value.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/JSCHelpers.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Value.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Value.dia
new file mode 100644
index 00000000..e16abe8b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Value.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Value.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Value.o
new file mode 100644
index 00000000..57a5517c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Value.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/jschelpers.LinkFileList b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/jschelpers.LinkFileList
new file mode 100644
index 00000000..e1201e44
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/jschelpers.LinkFileList
@@ -0,0 +1,5 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCWrapper.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Value.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/JSCHelpers.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/systemJSCWrapper.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/Unicode.o
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/systemJSCWrapper.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/systemJSCWrapper.d
new file mode 100644
index 00000000..eaeae3fa
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/systemJSCWrapper.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/systemJSCWrapper.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/JSCWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/systemJSCWrapper.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/systemJSCWrapper.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/systemJSCWrapper.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/systemJSCWrapper.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/systemJSCWrapper.o
new file mode 100644
index 00000000..31c7ef29
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/Objects-normal/x86_64/systemJSCWrapper.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/JSCHelpers.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/JSCHelpers.d
new file mode 100644
index 00000000..128d2dde
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/JSCHelpers.d
@@ -0,0 +1,379 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/JSCHelpers.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/JSCHelpers.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/JSCHelpers.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/JSCHelpers.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/JSCHelpers.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/JSCWrapper.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/JSCWrapper.d
new file mode 100644
index 00000000..ee6c2b9c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/JSCWrapper.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/JSCWrapper.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/JSCWrapper.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/JSCWrapper.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/JSCWrapper.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/Unicode.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/Unicode.d
new file mode 100644
index 00000000..cad914f7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/Unicode.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/Unicode.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/Unicode.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/Unicode.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/Unicode.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/Unicode.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/Value.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/Value.d
new file mode 100644
index 00000000..8989dde8
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/Value.d
@@ -0,0 +1,380 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/Value.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/Value.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/JavaScriptCore.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/JSCWrapper.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/Unicode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/noncopyable.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/privatedata/PrivateDataBase.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/JSCHelpers.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/Value.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/Value.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/Value.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/systemJSCWrapper.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/systemJSCWrapper.d
new file mode 100644
index 00000000..eaeae3fa
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/systemJSCWrapper.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jschelpers/systemJSCWrapper.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../ReactCommon/jschelpers/JSCWrapper.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/systemJSCWrapper.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/systemJSCWrapper.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/StaticAnalyzer/React/jschelpers/normal/x86_64/systemJSCWrapper.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/dgph b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/dgph
new file mode 100644
index 00000000..8222ee1f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/dgph~ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/dgph~
new file mode 100644
index 00000000..a700e7fc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-generated-files.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-own-target-headers.hmap
new file mode 100644
index 00000000..f48aff03
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-project-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-project-headers.hmap
new file mode 100644
index 00000000..334b96dc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers.hmap
new file mode 100644
index 00000000..594554af
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jschelpers.build/jschelpers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/InspectorInterfaces.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/InspectorInterfaces.d
new file mode 100644
index 00000000..8ef514d2
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/InspectorInterfaces.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jsinspector/InspectorInterfaces.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jsinspector/InspectorInterfaces.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/InspectorInterfaces.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/InspectorInterfaces.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/InspectorInterfaces.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/InspectorInterfaces.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/InspectorInterfaces.o
new file mode 100644
index 00000000..6207d20f
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/InspectorInterfaces.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/jsinspector.LinkFileList b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/jsinspector.LinkFileList
new file mode 100644
index 00000000..a0f04d25
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/jsinspector.LinkFileList
@@ -0,0 +1 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/Objects-normal/x86_64/InspectorInterfaces.o
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/StaticAnalyzer/React/jsinspector/normal/x86_64/InspectorInterfaces.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/StaticAnalyzer/React/jsinspector/normal/x86_64/InspectorInterfaces.d
new file mode 100644
index 00000000..8ef514d2
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/StaticAnalyzer/React/jsinspector/normal/x86_64/InspectorInterfaces.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jsinspector/InspectorInterfaces.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/jsinspector/InspectorInterfaces.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/StaticAnalyzer/React/jsinspector/normal/x86_64/InspectorInterfaces.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/StaticAnalyzer/React/jsinspector/normal/x86_64/InspectorInterfaces.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/StaticAnalyzer/React/jsinspector/normal/x86_64/InspectorInterfaces.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/dgph b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/dgph
new file mode 100644
index 00000000..3b2cfd90
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/dgph~ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/dgph~
new file mode 100644
index 00000000..a700e7fc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-generated-files.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-project-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-project-headers.hmap
new file mode 100644
index 00000000..334b96dc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector.hmap
new file mode 100644
index 00000000..6400c102
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/jsinspector.build/jsinspector.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/PrivateDataBase.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/PrivateDataBase.d
new file mode 100644
index 00000000..1bcd0e0b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/PrivateDataBase.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/privatedata/PrivateDataBase.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/privatedata/PrivateDataBase.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/PrivateDataBase.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/PrivateDataBase.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/PrivateDataBase.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/PrivateDataBase.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/PrivateDataBase.o
new file mode 100644
index 00000000..6e997eba
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/PrivateDataBase.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/privatedata.LinkFileList b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/privatedata.LinkFileList
new file mode 100644
index 00000000..c2ba1b4d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/privatedata.LinkFileList
@@ -0,0 +1 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/Objects-normal/x86_64/PrivateDataBase.o
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/StaticAnalyzer/React/privatedata/normal/x86_64/PrivateDataBase.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/StaticAnalyzer/React/privatedata/normal/x86_64/PrivateDataBase.d
new file mode 100644
index 00000000..1bcd0e0b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/StaticAnalyzer/React/privatedata/normal/x86_64/PrivateDataBase.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/privatedata/PrivateDataBase.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/privatedata/PrivateDataBase.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/StaticAnalyzer/React/privatedata/normal/x86_64/PrivateDataBase.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/StaticAnalyzer/React/privatedata/normal/x86_64/PrivateDataBase.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/StaticAnalyzer/React/privatedata/normal/x86_64/PrivateDataBase.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/dgph b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/dgph
new file mode 100644
index 00000000..73d8e0ba
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/dgph~ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/dgph~
new file mode 100644
index 00000000..a700e7fc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-generated-files.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-own-target-headers.hmap
new file mode 100644
index 00000000..579b0c28
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-project-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-project-headers.hmap
new file mode 100644
index 00000000..334b96dc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata.hmap
new file mode 100644
index 00000000..b536775e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/privatedata.build/privatedata.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Bits.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Bits.d
new file mode 100644
index 00000000..6921a67f
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Bits.d
@@ -0,0 +1,217 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/folly-2016.09.26.00/folly/Bits.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Bits.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Bits.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Bits.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Bits.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Bits.o
new file mode 100644
index 00000000..1f8d41b5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Bits.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/BitsFunctexcept.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/BitsFunctexcept.d
new file mode 100644
index 00000000..ee10e8cb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/BitsFunctexcept.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/BitsFunctexcept.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/BitsFunctexcept.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/BitsFunctexcept.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/BitsFunctexcept.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/BitsFunctexcept.o
new file mode 100644
index 00000000..38dc87c2
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/BitsFunctexcept.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Conv.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Conv.d
new file mode 100644
index 00000000..328790f2
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Conv.d
@@ -0,0 +1,354 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/folly-2016.09.26.00/folly/Conv.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Conv.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Conv.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Conv.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Conv.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Conv.o
new file mode 100644
index 00000000..ada10b07
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Conv.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Demangle-A25D07C72C2EFF53.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Demangle-A25D07C72C2EFF53.d
new file mode 100644
index 00000000..0c075505
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Demangle-A25D07C72C2EFF53.d
@@ -0,0 +1,336 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/folly-2016.09.26.00/folly/Demangle.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Demangle-A25D07C72C2EFF53.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Demangle-A25D07C72C2EFF53.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Demangle-A25D07C72C2EFF53.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Demangle-A25D07C72C2EFF53.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Demangle-A25D07C72C2EFF53.o
new file mode 100644
index 00000000..3aaeec2a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Demangle-A25D07C72C2EFF53.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/MallocImpl.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/MallocImpl.d
new file mode 100644
index 00000000..8828b46c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/MallocImpl.d
@@ -0,0 +1,6 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/folly-2016.09.26.00/folly/detail/MallocImpl.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/MallocImpl.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/MallocImpl.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/MallocImpl.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/MallocImpl.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/MallocImpl.o
new file mode 100644
index 00000000..087fd94b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/MallocImpl.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/StringBase.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/StringBase.d
new file mode 100644
index 00000000..8bd3502d
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/StringBase.d
@@ -0,0 +1,365 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/folly-2016.09.26.00/folly/StringBase.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/StringBase.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/StringBase.dia
new file mode 100644
index 00000000..3e09760c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/StringBase.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/StringBase.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/StringBase.o
new file mode 100644
index 00000000..37a07ee0
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/StringBase.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Unicode.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Unicode.d
new file mode 100644
index 00000000..7b9e1cbb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Unicode.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/folly-2016.09.26.00/folly/Unicode.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unicode.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Unicode.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Unicode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Unicode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Unicode.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Unicode.o
new file mode 100644
index 00000000..572b8975
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Unicode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/demangle-7B942820D95A2665.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/demangle-7B942820D95A2665.d
new file mode 100644
index 00000000..cc93829e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/demangle-7B942820D95A2665.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/demangle.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/config.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/demangle-7B942820D95A2665.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/demangle-7B942820D95A2665.dia
new file mode 100644
index 00000000..38888fd4
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/demangle-7B942820D95A2665.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/demangle-7B942820D95A2665.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/demangle-7B942820D95A2665.o
new file mode 100644
index 00000000..05d9076b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/demangle-7B942820D95A2665.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/dynamic.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/dynamic.d
new file mode 100644
index 00000000..9646bf3e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/dynamic.d
@@ -0,0 +1,372 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/folly-2016.09.26.00/folly/dynamic.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/dynamic.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/dynamic.dia
new file mode 100644
index 00000000..d81e2d0c
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/dynamic.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/dynamic.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/dynamic.o
new file mode 100644
index 00000000..e60a7d23
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/dynamic.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/json.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/json.d
new file mode 100644
index 00000000..9695d32e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/json.d
@@ -0,0 +1,534 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/folly-2016.09.26.00/folly/json.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/json.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/operators.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/user.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_compiler_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/compiler/clang.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_stdlib_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/stdlib/libcpp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/select_platform_config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/platform/macos.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/posix_features.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/suffix.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Range.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Portability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CPortability.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Hash.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ApplyTuple.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Builtins.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Assume.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitsDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_adaptor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/static_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_categories.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/eval_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/static_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/eti.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/adl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/intel.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bool_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/integral_c_tag.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/int_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/config/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/debug/error.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/eat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/limits/arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/bitand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/adt.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/detail/check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/compl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/list/reverse.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/detail/while.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/expand.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/overload.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/rem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/variadic/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/arg_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/na_assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/yes_no.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/stringize.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_convertible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/intrinsics.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/version.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_constant.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/config_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/interoperable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_same.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/indirect_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_class.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/detail/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/addressof.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_const.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_pod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_scalar.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_arithmetic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_integral.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_floating_point.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/always.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/data.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/array/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/protect.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/void.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/has_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Likely.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV1.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/SpookyHashV2.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/Malloc.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/BitsFunctexcept.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Traits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/add_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/aligned_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/alignment_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_with_alignment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conditional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/common_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/decay.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_array.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_bounds.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/copy_cv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/extent.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/function_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_fundamental.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_complement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_dereference.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_divides_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_greater_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_and.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_logical_or.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_minus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_negate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_new_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_default_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_destructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_plus_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_post_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_pre_increment.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_minus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_unary_plus.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_abstract.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_complex.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_compound.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/noncopyable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_final.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_float.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/enable_if.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_object.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_polymorphic.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_stateless.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_union.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_signed.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/make_unsigned.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/rank.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_all_extents.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/remove_volatile.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/type_identity.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/integral_promotion.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/promote.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Constexpr.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/CpuId.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeCommon.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/RangeSse42.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/dynamic-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Conv.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/implicit_cast.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/double-conversion.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/double-conversion/utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Demangle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Expected.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Preprocessor.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Math.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/regex/pending/unicode_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/cstdint.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/throw_exception.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ExceptionString.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FBVector.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatTraits.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/ScopeGuard.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/UncaughtExceptionCounter.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/String-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/FormatArg.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Format-inl.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Exception.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/portability/Windows.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/next_prior.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/std_containers_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/std/string_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/std/list_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/trim.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/begin.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/config.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/range_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/mutable_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/detail/extract_optional_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/const_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/end.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/detail/implementation_help.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/detail/common.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/detail/sfinae.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/as_literal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/iterator_range.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/iterator_range_core.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/functions.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/size_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/difference_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/has_range_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/concepts.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/concept_check.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/concept/assert.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/concept/detail/general.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/concept/detail/has_constraints.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/conversion_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/concept/usage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/concept/detail/concept_def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/for.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/seq/seq.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/seq/elem.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/seq/size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/seq/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/concept/detail/concept_undef.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/iterator_concepts.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/limits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/value_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/detail/misc_concept.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/detail/has_member_size.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/base_from_member.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/binary.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/seq/cat.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/seq/transform.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/logical/not.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/identity_type.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/checked_delete.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/checked_delete.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/distance.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/empty.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/rbegin.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/reverse_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/reverse_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/rend.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/algorithm/equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/detail/safe_bool.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/iterator_range_io.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/range/detail/str_types.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/trim.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/classification.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/classification.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/predicate_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/case_conv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/iterator/transform_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/result_of.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/slot/slot.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/declval.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/predicate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/compare.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/find.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/finder.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/constants.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/finder.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/predicate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/split.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/iter_find.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/concept.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/find_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/find_iterator.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/function.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/iterate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/function/detail/prologue.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/no_tr1/functional.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/function/function_base.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/integer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/integer_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/integer_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_index.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_index/stl_type_index.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_index/type_index_facade.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/demangle.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/type_traits/composite_traits.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/ref.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/ref.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/function_equal.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/function/function_fwd.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mem_fn.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/bind/mem_fn.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/get_pointer.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/config/no_tr1/memory.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/bind/mem_fn_template.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/bind/mem_fn_cc.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/repetition/enum.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/preprocessor/enum_params.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/function/detail/function_iterate.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/function/detail/maybe_include.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/function/function_template.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/detail/no_exceptions_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/core/no_exceptions_support.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/move/utility_core.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/move/detail/config_begin.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/move/detail/workaround.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/move/core.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/move/detail/config_end.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/move/detail/meta_utils.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/move/detail/meta_utils_core.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/util.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/join.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/mpl/logical.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/replace.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/find_format.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/formatter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/boost_1_63_0/boost/algorithm/string/erase.hpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Unicode.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/json.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/json.dia
new file mode 100644
index 00000000..b968fea8
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/json.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/json.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/json.o
new file mode 100644
index 00000000..d3c83aa4
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/json.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/logging.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/logging.d
new file mode 100644
index 00000000..e2ee12d0
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/logging.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/logging.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/utilities.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/mutex.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/commandlineflags.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/raw_logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/googleinit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/stacktrace.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/logging.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/logging.dia
new file mode 100644
index 00000000..be83815a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/logging.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/logging.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/logging.o
new file mode 100644
index 00000000..c396a4f1
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/logging.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/raw_logging.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/raw_logging.d
new file mode 100644
index 00000000..63f1eabe
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/raw_logging.d
@@ -0,0 +1,12 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/raw_logging.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/utilities.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/mutex.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/raw_logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/commandlineflags.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/stacktrace.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/raw_logging.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/raw_logging.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/raw_logging.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/raw_logging.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/raw_logging.o
new file mode 100644
index 00000000..133f6439
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/raw_logging.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/signalhandler.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/signalhandler.d
new file mode 100644
index 00000000..9e4d515c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/signalhandler.d
@@ -0,0 +1,11 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/signalhandler.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/utilities.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/mutex.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/stacktrace.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/symbolize.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/signalhandler.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/signalhandler.dia
new file mode 100644
index 00000000..3672fd9a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/signalhandler.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/signalhandler.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/signalhandler.o
new file mode 100644
index 00000000..c1d93472
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/signalhandler.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/symbolize.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/symbolize.d
new file mode 100644
index 00000000..0c8165bc
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/symbolize.d
@@ -0,0 +1,11 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/symbolize.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/utilities.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/mutex.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/symbolize.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/demangle.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/symbolize.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/symbolize.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/symbolize.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/symbolize.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/symbolize.o
new file mode 100644
index 00000000..901a8ff7
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/symbolize.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/third-party.LinkFileList b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/third-party.LinkFileList
new file mode 100644
index 00000000..cf234ab2
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/third-party.LinkFileList
@@ -0,0 +1,16 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Conv.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/StringBase.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/raw_logging.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/signalhandler.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/dynamic.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/utilities.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/MallocImpl.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Bits.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/symbolize.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/vlog_is_on.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Unicode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/demangle-7B942820D95A2665.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Demangle-A25D07C72C2EFF53.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/logging.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/json.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/BitsFunctexcept.o
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/utilities.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/utilities.d
new file mode 100644
index 00000000..4763a3aa
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/utilities.d
@@ -0,0 +1,14 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/utilities.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/utilities.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/mutex.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/googleinit.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/stacktrace.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/symbolize.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/commandlineflags.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/stacktrace_x86_64-inl.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/utilities.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/utilities.dia
new file mode 100644
index 00000000..2e6dfac9
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/utilities.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/utilities.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/utilities.o
new file mode 100644
index 00000000..42da3b71
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/utilities.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/vlog_is_on.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/vlog_is_on.d
new file mode 100644
index 00000000..41d0c44b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/vlog_is_on.d
@@ -0,0 +1,12 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/vlog_is_on.cc \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/utilities.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/mutex.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/third-party/glog-0.3.4/src/config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/config.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/log_severity.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/vlog_is_on.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/commandlineflags.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/glog/raw_logging.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/React/../third-party/glog-0.3.4/src/base/googleinit.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/vlog_is_on.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/vlog_is_on.dia
new file mode 100644
index 00000000..56024675
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/vlog_is_on.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/vlog_is_on.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/vlog_is_on.o
new file mode 100644
index 00000000..1bfa0a48
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/vlog_is_on.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/dgph b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/dgph
new file mode 100644
index 00000000..62617600
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/dgph~ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/dgph~
new file mode 100644
index 00000000..a700e7fc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-generated-files.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-project-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-project-headers.hmap
new file mode 100644
index 00000000..334b96dc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party.hmap
new file mode 100644
index 00000000..2c810a7a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/third-party.build/third-party.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Utils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Utils.d
new file mode 100644
index 00000000..31dca286
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Utils.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Utils.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Utils.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Utils.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Utils.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Utils.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Utils.o
new file mode 100644
index 00000000..1df53734
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Utils.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGEnums.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGEnums.d
new file mode 100644
index 00000000..c3afc330
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGEnums.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGEnums.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGEnums.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGEnums.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGEnums.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGEnums.o
new file mode 100644
index 00000000..e64de474
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGEnums.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGLayout.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGLayout.d
new file mode 100644
index 00000000..cfbe2369
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGLayout.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGLayout.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGLayout.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGLayout.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGLayout.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGLayout.o
new file mode 100644
index 00000000..172c94ca
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGLayout.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNode.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNode.d
new file mode 100644
index 00000000..9544d255
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNode.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNode.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Utils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNode.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNode.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNode.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNode.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNode.o
new file mode 100644
index 00000000..c7f1047b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNode.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNodePrint.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNodePrint.d
new file mode 100644
index 00000000..3e33c7d1
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNodePrint.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNodePrint.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNodePrint.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNodePrint.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNodePrint.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNodePrint.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNodePrint.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNodePrint.o
new file mode 100644
index 00000000..ecf0ece4
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNodePrint.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGStyle.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGStyle.d
new file mode 100644
index 00000000..b463b05e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGStyle.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGStyle.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGStyle.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGStyle.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGStyle.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGStyle.o
new file mode 100644
index 00000000..65430518
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGStyle.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Yoga.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Yoga.d
new file mode 100644
index 00000000..0dd827b5
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Yoga.d
@@ -0,0 +1,11 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNodePrint.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Yoga.dia b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Yoga.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Yoga.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Yoga.o b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Yoga.o
new file mode 100644
index 00000000..be45f077
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Yoga.o differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/yoga.LinkFileList b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/yoga.LinkFileList
new file mode 100644
index 00000000..670d061c
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/yoga.LinkFileList
@@ -0,0 +1,7 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Yoga.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGStyle.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNode.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGEnums.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/Utils.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGLayout.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/Objects-normal/x86_64/YGNodePrint.o
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/Utils.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/Utils.d
new file mode 100644
index 00000000..31dca286
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/Utils.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Utils.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/Utils.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/Utils.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/Utils.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGEnums.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGEnums.d
new file mode 100644
index 00000000..c3afc330
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGEnums.d
@@ -0,0 +1,4 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGEnums.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGEnums.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGEnums.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGLayout.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGLayout.d
new file mode 100644
index 00000000..cfbe2369
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGLayout.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGLayout.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGLayout.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGLayout.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGNode.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGNode.d
new file mode 100644
index 00000000..9544d255
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGNode.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNode.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Utils.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGNode.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGNode.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGNode.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGNodePrint.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGNodePrint.d
new file mode 100644
index 00000000..3e33c7d1
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGNodePrint.d
@@ -0,0 +1,10 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNodePrint.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNodePrint.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGNodePrint.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGNodePrint.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGNodePrint.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGStyle.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGStyle.d
new file mode 100644
index 00000000..b463b05e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGStyle.d
@@ -0,0 +1,7 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGStyle.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGStyle.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/YGStyle.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/Yoga.d b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/Yoga.d
new file mode 100644
index 00000000..0dd827b5
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/Yoga.d
@@ -0,0 +1,11 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.cpp \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Utils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h \
+ /Users/ben/Documents/dev/react-native-masked-text/node_modules/react-native/ReactCommon/yoga/yoga/YGNodePrint.h
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/Yoga.plist b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/Yoga.plist
new file mode 100644
index 00000000..679c4937
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/StaticAnalyzer/React/yoga/normal/x86_64/Yoga.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ clang_version
+Apple LLVM version 9.1.0 (clang-902.0.39.2)
+ files
+
+
+ diagnostics
+
+
+
+
\ No newline at end of file
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/dgph b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/dgph
new file mode 100644
index 00000000..c3e935b1
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/dgph~ b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/dgph~
new file mode 100644
index 00000000..a700e7fc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-generated-files.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-own-target-headers.hmap
new file mode 100644
index 00000000..c79a0378
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-project-headers.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-project-headers.hmap
new file mode 100644
index 00000000..334b96dc
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga.hmap b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga.hmap
new file mode 100644
index 00000000..fe2f206a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/yoga.build/yoga.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/DerivedSources/RnTest_vers.c b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/DerivedSources/RnTest_vers.c
new file mode 100644
index 00000000..93c720cd
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/DerivedSources/RnTest_vers.c
@@ -0,0 +1,5 @@
+ extern const unsigned char RnTestVersionString[];
+ extern const double RnTestVersionNumber;
+
+ const unsigned char RnTestVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:RnTest PROJECT:RnTest-1" "\n";
+ const double RnTestVersionNumber __attribute__ ((used)) = (double)1.;
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/LaunchScreen-PartialInfo.plist b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/LaunchScreen-PartialInfo.plist
new file mode 100644
index 00000000..0c67376e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/LaunchScreen-PartialInfo.plist
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/AppDelegate.d b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/AppDelegate.d
new file mode 100644
index 00000000..fac012eb
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/AppDelegate.d
@@ -0,0 +1,12 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/RnTest/AppDelegate.m \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/RnTest/AppDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBundleURLProvider.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/AppDelegate.dia b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/AppDelegate.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/AppDelegate.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/AppDelegate.o b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/AppDelegate.o
new file mode 100644
index 00000000..8373d69e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/AppDelegate.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest.LinkFileList b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest.LinkFileList
new file mode 100644
index 00000000..8877d8c7
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest.LinkFileList
@@ -0,0 +1,3 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/AppDelegate.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/main.o
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_vers.o
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_dependency_info.dat b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_dependency_info.dat
new file mode 100644
index 00000000..7ec6ce55
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_dependency_info.dat differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_vers.d b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_vers.d
new file mode 100644
index 00000000..8948e35a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_vers.d
@@ -0,0 +1,2 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/DerivedSources/RnTest_vers.c
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_vers.dia b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_vers.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_vers.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_vers.o b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_vers.o
new file mode 100644
index 00000000..7e29135a
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/RnTest_vers.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/main.d b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/main.d
new file mode 100644
index 00000000..a87b3d23
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/main.d
@@ -0,0 +1,3 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/RnTest/main.m \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/RnTest/AppDelegate.h
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/main.dia b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/main.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/main.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/main.o b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/main.o
new file mode 100644
index 00000000..6f275a13
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Objects-normal/x86_64/main.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-generated-files.hmap
new file mode 100644
index 00000000..871901b9
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-project-headers.hmap
new file mode 100644
index 00000000..84235a5e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest.app-Simulated.xcent b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest.app-Simulated.xcent
new file mode 100644
index 00000000..c2de0042
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest.app-Simulated.xcent
@@ -0,0 +1,12 @@
+
+
+
+
+ application-identifier
+ ZGJ26789FK.org.reactjs.native.example.RnTest
+ keychain-access-groups
+
+ ZGJ26789FK.org.reactjs.native.example.RnTest
+
+
+
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest.app.xcent b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest.app.xcent
new file mode 100644
index 00000000..3842541b
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest.app.xcent
@@ -0,0 +1,8 @@
+
+
+
+
+ com.apple.security.get-task-allow
+
+
+
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest.hmap b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest.hmap
new file mode 100644
index 00000000..c3ea2a3e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/RnTest.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Script-00DD1BFF1BD5951E006B06BC.sh b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Script-00DD1BFF1BD5951E006B06BC.sh
new file mode 100755
index 00000000..59037335
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/Script-00DD1BFF1BD5951E006B06BC.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+export NODE_BINARY=node
+../node_modules/react-native/scripts/react-native-xcode.sh
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/assetcatalog_dependencies b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/assetcatalog_dependencies
new file mode 100644
index 00000000..5c12605b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/assetcatalog_dependencies differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/assetcatalog_generated_info.plist b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/assetcatalog_generated_info.plist
new file mode 100644
index 00000000..0c67376e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/assetcatalog_generated_info.plist
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/dgph b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/dgph
new file mode 100644
index 00000000..cec8b2be
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/dgph~ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/dgph~
new file mode 100644
index 00000000..cdfb3836
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTest.build/dgph~ differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.LinkFileList b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.LinkFileList
new file mode 100644
index 00000000..2f82d229
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.LinkFileList
@@ -0,0 +1 @@
+/Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.o
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.d b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.d
new file mode 100644
index 00000000..b4ab7b6a
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.d
@@ -0,0 +1,13 @@
+dependencies: \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/RnTestTests/RnTestTests.m \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTLog.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTDefines.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTUtils.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTRootView.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTJavaScriptLoader.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTFrameUpdate.h \
+ /Users/ben/Documents/dev/react-native-masked-text/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTInvalidating.h
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.dia b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.dia
new file mode 100644
index 00000000..c85cbfc5
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.dia differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.o b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.o
new file mode 100644
index 00000000..0f99a7ad
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests.o differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests_dependency_info.dat b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests_dependency_info.dat
new file mode 100644
index 00000000..c98b558b
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/Objects-normal/x86_64/RnTestTests_dependency_info.dat differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-all-non-framework-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-all-non-framework-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-all-non-framework-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-all-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-all-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-all-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-generated-files.hmap b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-generated-files.hmap
new file mode 100644
index 00000000..dd8b535d
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-generated-files.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-own-target-headers.hmap b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-own-target-headers.hmap
new file mode 100644
index 00000000..dc511c47
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-own-target-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-project-headers.hmap b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-project-headers.hmap
new file mode 100644
index 00000000..84235a5e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests-project-headers.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests.hmap b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests.hmap
new file mode 100644
index 00000000..84235a5e
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests.hmap differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests.xctest-Simulated.xcent b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests.xctest-Simulated.xcent
new file mode 100644
index 00000000..c1e3261e
--- /dev/null
+++ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/RnTestTests.xctest-Simulated.xcent
@@ -0,0 +1,12 @@
+
+
+
+
+ application-identifier
+ ZGJ26789FK.org.reactjs.native.example.RnTestTests
+ keychain-access-groups
+
+ ZGJ26789FK.org.reactjs.native.example.RnTestTests
+
+
+
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/dgph b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/dgph
new file mode 100644
index 00000000..c27d0986
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/dgph differ
diff --git a/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/dgph~ b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/dgph~
new file mode 100644
index 00000000..cdfb3836
Binary files /dev/null and b/ios/build/Build/Intermediates.noindex/RnTest.build/Debug-iphonesimulator/RnTestTests.build/dgph~ differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app.dSYM/Contents/Info.plist b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app.dSYM/Contents/Info.plist
new file mode 100644
index 00000000..3ce890be
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app.dSYM/Contents/Info.plist
@@ -0,0 +1,20 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ English
+ CFBundleIdentifier
+ com.apple.xcode.dsym.org.reactjs.native.example.RnTest
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundlePackageType
+ dSYM
+ CFBundleSignature
+ ????
+ CFBundleShortVersionString
+ 1.0
+ CFBundleVersion
+ 1
+
+
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app.dSYM/Contents/Resources/DWARF/RnTest b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app.dSYM/Contents/Resources/DWARF/RnTest
new file mode 100644
index 00000000..6c05d8dd
Binary files /dev/null and b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app.dSYM/Contents/Resources/DWARF/RnTest differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Base.lproj/LaunchScreen.nib b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Base.lproj/LaunchScreen.nib
new file mode 100644
index 00000000..3c7fc27d
Binary files /dev/null and b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Base.lproj/LaunchScreen.nib differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection
new file mode 100755
index 00000000..2764666f
Binary files /dev/null and b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/IDEBundleInjection.framework/Info.plist b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/IDEBundleInjection.framework/Info.plist
new file mode 100644
index 00000000..29be8f22
Binary files /dev/null and b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/IDEBundleInjection.framework/Info.plist differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources
new file mode 100644
index 00000000..cd6b4e49
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources
@@ -0,0 +1,136 @@
+
+
+
+
+ files
+
+ Info.plist
+
+ Cwsl4MoHt6dTvyYXRy5C2x7Kd88=
+
+ version.plist
+
+ znuKt4UiTOJWwzrlgwaYX94o/a4=
+
+
+ files2
+
+ version.plist
+
+ hash
+
+ znuKt4UiTOJWwzrlgwaYX94o/a4=
+
+ hash2
+
+ napzzKlhgK6Qoqz8QO+9TkyuIsW5V+s6GmClALe2lT4=
+
+
+
+ rules
+
+ ^
+
+ ^.*\.lproj/
+
+ optional
+
+ weight
+ 1000
+
+ ^.*\.lproj/locversion.plist$
+
+ omit
+
+ weight
+ 1100
+
+ ^Base\.lproj/
+
+ weight
+ 1010
+
+ ^version.plist$
+
+
+ rules2
+
+ .*\.dSYM($|/)
+
+ weight
+ 11
+
+ ^
+
+ weight
+ 20
+
+ ^(.*/)?\.DS_Store$
+
+ omit
+
+ weight
+ 2000
+
+ ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/
+
+ nested
+
+ weight
+ 10
+
+ ^.*
+
+ ^.*\.lproj/
+
+ optional
+
+ weight
+ 1000
+
+ ^.*\.lproj/locversion.plist$
+
+ omit
+
+ weight
+ 1100
+
+ ^Base\.lproj/
+
+ weight
+ 1010
+
+ ^Info\.plist$
+
+ omit
+
+ weight
+ 20
+
+ ^PkgInfo$
+
+ omit
+
+ weight
+ 20
+
+ ^[^/]+$
+
+ nested
+
+ weight
+ 10
+
+ ^embedded\.provisionprofile$
+
+ weight
+ 20
+
+ ^version\.plist$
+
+ weight
+ 20
+
+
+
+
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/IDEBundleInjection.framework/version.plist b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/IDEBundleInjection.framework/version.plist
new file mode 100644
index 00000000..bc0ef617
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/IDEBundleInjection.framework/version.plist
@@ -0,0 +1,18 @@
+
+
+
+
+ BuildAliasOf
+ IDEBundleInjection
+ BuildVersion
+ 97
+ CFBundleShortVersionString
+ 5.0
+ CFBundleVersion
+ 14005
+ ProjectName
+ IDEBundleInjection_Sim
+ SourceVersion
+ 14005000000000000
+
+
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/Info.plist b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/Info.plist
new file mode 100644
index 00000000..8d79a563
Binary files /dev/null and b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/Info.plist differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/XCTest b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/XCTest
new file mode 100755
index 00000000..4a238d14
Binary files /dev/null and b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/XCTest differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/_CodeSignature/CodeResources b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/_CodeSignature/CodeResources
new file mode 100644
index 00000000..77cbfbf2
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/_CodeSignature/CodeResources
@@ -0,0 +1,803 @@
+
+
+
+
+ files
+
+ Headers/XCAbstractTest.h
+
+ 4jnRu9kM4nMP+Xh3ikwmHuBDxsI=
+
+ Headers/XCTActivity.h
+
+ BVKd+CuVL/fMWVnojVTY7BZiXkc=
+
+ Headers/XCTAttachment.h
+
+ D+igalTdqMWvG/cB1056ns8u3B8=
+
+ Headers/XCTAttachmentLifetime.h
+
+ Qi0F8Z3qRbkbVrjHzxpLaMrHT+k=
+
+ Headers/XCTContext.h
+
+ S2c/fkq5xnjLgsMY3mNIE7jPMFE=
+
+ Headers/XCTDarwinNotificationExpectation.h
+
+ T1bfewH+fYADesmaBVQWzTdVRjk=
+
+ Headers/XCTKVOExpectation.h
+
+ s28+hglUCU24y2eMlji4++ZVC+0=
+
+ Headers/XCTNSNotificationExpectation.h
+
+ ZC9t23DBiU7y/pJ116Zgt8q1/J4=
+
+ Headers/XCTNSPredicateExpectation.h
+
+ ZeWBK1Un0h29h5DRuqDXCiqCOnk=
+
+ Headers/XCTWaiter.h
+
+ 3xRcrUqW54PHl7VXGv1RNSfgZAg=
+
+ Headers/XCTest.apinotes
+
+ WqUywzmEAqoV6c0qeOnMA2dcIQc=
+
+ Headers/XCTest.h
+
+ vyHRJ5iIHDimvUMhPRtMJzhrlW4=
+
+ Headers/XCTestAssertions.h
+
+ t430vwqgq3wiAocVV386i0N+lOY=
+
+ Headers/XCTestAssertionsImpl.h
+
+ ZbDVHohdSHIPtEqmg7zN34qa0T4=
+
+ Headers/XCTestCase+AsynchronousTesting.h
+
+ eC80b6p4MAnn/amp9qgAOF/JnyY=
+
+ Headers/XCTestCase.h
+
+ 9k/frnoS30eoHzc0bCt1L5mno9U=
+
+ Headers/XCTestCaseRun.h
+
+ /XUqDHA/BFdQDUxQU8Ft5LXo/Ps=
+
+ Headers/XCTestDefines.h
+
+ wgEh+arKAaJ2OX5pBm7Hh3ft0jY=
+
+ Headers/XCTestErrors.h
+
+ oZFqJmcKHuKZIgeKOwsFDxhfEEc=
+
+ Headers/XCTestExpectation.h
+
+ Y/ssvPOSAIHfa/G1pVREFYwgDq8=
+
+ Headers/XCTestLog.h
+
+ 9BU/gwbaKcfn2L9dfo2dHRFN6Bc=
+
+ Headers/XCTestObservation.h
+
+ eYPPds+/sIm1g8tzzWEi74ngT8s=
+
+ Headers/XCTestObservationCenter.h
+
+ 5ySsNYFGF0ZFvLZnL7UTg1HNRR4=
+
+ Headers/XCTestObserver.h
+
+ DV3Cjdd1CAe6nYFEzmUrCtnzxQg=
+
+ Headers/XCTestProbe.h
+
+ fIVR0xRsxMAabrJmeGX3hPDwL0Y=
+
+ Headers/XCTestRun.h
+
+ 7GVNxTeghh0aBxY/Gvb+j2VTkqQ=
+
+ Headers/XCTestSuite.h
+
+ eRc+OVrMoZSKfP/hWkP9044Xkwo=
+
+ Headers/XCTestSuiteRun.h
+
+ OX+g52bOAnhjLVDKkweTKM8jTHQ=
+
+ Headers/XCUIApplication.h
+
+ 3xPGyAQELvSZZ4RHMwhQEnlzFhg=
+
+ Headers/XCUICoordinate.h
+
+ ISpzcCIN+bNtcvHSlqKq3H0dHAA=
+
+ Headers/XCUIDevice.h
+
+ 6pJZzs6nb9PxIhPZMSzM3Pnoyyk=
+
+ Headers/XCUIElement.h
+
+ csedByP43miIpAyfC8qT1PdhfSU=
+
+ Headers/XCUIElementAttributes.h
+
+ kWitRD0ClLa1hUvctZ6Jw2DmOW8=
+
+ Headers/XCUIElementQuery.h
+
+ C3ZXTnkZIFu38bImb5YnKX8ME3s=
+
+ Headers/XCUIElementTypeQueryProvider.h
+
+ RByqnqCJz+rOh+n5b6A0LWE4ipY=
+
+ Headers/XCUIElementTypes.h
+
+ r6naN5HO1+6krqDyXc3YqPmLBgw=
+
+ Headers/XCUIKeyboardKeys.h
+
+ N6DDr++AC3URGk9/PoyCGpq5h9k=
+
+ Headers/XCUIRemote.h
+
+ +rbCM60bDizOcqH+NaoTiCwtEH4=
+
+ Headers/XCUIScreen.h
+
+ /ub1WB6+9GFwYxGEGsIzKvyt/mg=
+
+ Headers/XCUIScreenshot.h
+
+ WRAFpS5fsJOjpa68uJDYY7QcwzQ=
+
+ Headers/XCUIScreenshotProviding.h
+
+ qghz8l697gauRG1WZGkXCsisS40=
+
+ Headers/XCUISiriService.h
+
+ NtIeUU61kDhd8LGgBr1FjKXe6JQ=
+
+ Info.plist
+
+ uPxPInP5h9+ERgCm8NCXpuuMEmg=
+
+ Modules/module.modulemap
+
+ ha0qqLvU0UdkLu07qH5tE4agQV4=
+
+ en.lproj/InfoPlist.strings
+
+ hash
+
+ TuBj57ZP6zBqcL9HttO2Rucaw9E=
+
+ optional
+
+
+ version.plist
+
+ DmGu9k7yBOLSfwtyNbn3zYir630=
+
+
+ files2
+
+ Headers/XCAbstractTest.h
+
+ hash
+
+ 4jnRu9kM4nMP+Xh3ikwmHuBDxsI=
+
+ hash2
+
+ IFgW59C1Ktqp4LtLT30sw91amGbNOGweE+JfCOD3+Zg=
+
+
+ Headers/XCTActivity.h
+
+ hash
+
+ BVKd+CuVL/fMWVnojVTY7BZiXkc=
+
+ hash2
+
+ rRcgcNhfkv8++PLGoc2+V7RKA+20od2gktcAZnNphso=
+
+
+ Headers/XCTAttachment.h
+
+ hash
+
+ D+igalTdqMWvG/cB1056ns8u3B8=
+
+ hash2
+
+ 5aviQX7pgXyeS3UISWFOjiiUf8kPCzFtPNnk08B2rrQ=
+
+
+ Headers/XCTAttachmentLifetime.h
+
+ hash
+
+ Qi0F8Z3qRbkbVrjHzxpLaMrHT+k=
+
+ hash2
+
+ Rgc8y3HDwwo+o1r5F3cM/Qx1oWjHjCU7NM42hjfXSas=
+
+
+ Headers/XCTContext.h
+
+ hash
+
+ S2c/fkq5xnjLgsMY3mNIE7jPMFE=
+
+ hash2
+
+ aKMqn4OBmb2Fg3/8sTMLXW2eHWiyWP3bQkSzTnvrwmQ=
+
+
+ Headers/XCTDarwinNotificationExpectation.h
+
+ hash
+
+ T1bfewH+fYADesmaBVQWzTdVRjk=
+
+ hash2
+
+ yghcN+Vtx2KfRi9uMiorSiMSUWkgipo2aBxjXGpindM=
+
+
+ Headers/XCTKVOExpectation.h
+
+ hash
+
+ s28+hglUCU24y2eMlji4++ZVC+0=
+
+ hash2
+
+ s24Kr8S1fbS62TmPjWUVYBWo7l0mxOge/yAw3RVvRCQ=
+
+
+ Headers/XCTNSNotificationExpectation.h
+
+ hash
+
+ ZC9t23DBiU7y/pJ116Zgt8q1/J4=
+
+ hash2
+
+ vHwq0rw8c1B93uSPcxyrdcpNF6gp5UqVvnMHKFPMSMg=
+
+
+ Headers/XCTNSPredicateExpectation.h
+
+ hash
+
+ ZeWBK1Un0h29h5DRuqDXCiqCOnk=
+
+ hash2
+
+ S1UvUDqqEddmWd/HrxA/x6Hc5VP0fYA6PWhhbAX9PzY=
+
+
+ Headers/XCTWaiter.h
+
+ hash
+
+ 3xRcrUqW54PHl7VXGv1RNSfgZAg=
+
+ hash2
+
+ mA5vx6/QQ25gHCNLjo9Y0eX1khy7s52IB7yacIGlrNk=
+
+
+ Headers/XCTest.apinotes
+
+ hash
+
+ WqUywzmEAqoV6c0qeOnMA2dcIQc=
+
+ hash2
+
+ k+5JrEIKeIUahHN4rMRX6ihL13259MqcP597ms2vgMs=
+
+
+ Headers/XCTest.h
+
+ hash
+
+ vyHRJ5iIHDimvUMhPRtMJzhrlW4=
+
+ hash2
+
+ vq64eNbcQBW4F9zCLXsPBM4vawf51Eq6PcVMcSyxLYI=
+
+
+ Headers/XCTestAssertions.h
+
+ hash
+
+ t430vwqgq3wiAocVV386i0N+lOY=
+
+ hash2
+
+ pGvrq4y/YqWUdlF2m6LpdEp5xPWAw5OzuiryWTlaF3I=
+
+
+ Headers/XCTestAssertionsImpl.h
+
+ hash
+
+ ZbDVHohdSHIPtEqmg7zN34qa0T4=
+
+ hash2
+
+ RxajF3uw62Qphc/Icq0LxEM3ocmdcEbdthtDn0ABR2k=
+
+
+ Headers/XCTestCase+AsynchronousTesting.h
+
+ hash
+
+ eC80b6p4MAnn/amp9qgAOF/JnyY=
+
+ hash2
+
+ PzPy8zgUJIK7pNLJsyp30K6scvvanQ/gT1BRn5HqHcs=
+
+
+ Headers/XCTestCase.h
+
+ hash
+
+ 9k/frnoS30eoHzc0bCt1L5mno9U=
+
+ hash2
+
+ sUlicIfA6n2ptVq+hNCObVRX+Ko6TpYZ5MtZYgnkTAI=
+
+
+ Headers/XCTestCaseRun.h
+
+ hash
+
+ /XUqDHA/BFdQDUxQU8Ft5LXo/Ps=
+
+ hash2
+
+ jEzXeXeFAbT7xbfbqjlf4yF+lZvOKKw9u0dhT8Lzpe4=
+
+
+ Headers/XCTestDefines.h
+
+ hash
+
+ wgEh+arKAaJ2OX5pBm7Hh3ft0jY=
+
+ hash2
+
+ 7He5KYZ39XMWqYjNErsv62IkR5nkHxwPpq6rh4W8tho=
+
+
+ Headers/XCTestErrors.h
+
+ hash
+
+ oZFqJmcKHuKZIgeKOwsFDxhfEEc=
+
+ hash2
+
+ bqmU7PnCm6GkYigcYehsZluZJau/3nfvDl9NneLn8NI=
+
+
+ Headers/XCTestExpectation.h
+
+ hash
+
+ Y/ssvPOSAIHfa/G1pVREFYwgDq8=
+
+ hash2
+
+ bzHkvrq2f+1FFP3qie5fF78p6scQOnD/r7WYoDW764A=
+
+
+ Headers/XCTestLog.h
+
+ hash
+
+ 9BU/gwbaKcfn2L9dfo2dHRFN6Bc=
+
+ hash2
+
+ Tu+6JYZZzftcXmUWH11IO9/jXCXi6QPeWDrL6izup6s=
+
+
+ Headers/XCTestObservation.h
+
+ hash
+
+ eYPPds+/sIm1g8tzzWEi74ngT8s=
+
+ hash2
+
+ DlaZPljnXduHBIxVFsQHWivHsQV6+QqtkPm3wqcNC9c=
+
+
+ Headers/XCTestObservationCenter.h
+
+ hash
+
+ 5ySsNYFGF0ZFvLZnL7UTg1HNRR4=
+
+ hash2
+
+ d+hY4S23zmWO8E2YIrh4biGe9oQWCfD497a+oVk2+yY=
+
+
+ Headers/XCTestObserver.h
+
+ hash
+
+ DV3Cjdd1CAe6nYFEzmUrCtnzxQg=
+
+ hash2
+
+ 7CTdhCJbuEzQNSyp3exgcCn6JnIRjBwpUcOKmiddBtU=
+
+
+ Headers/XCTestProbe.h
+
+ hash
+
+ fIVR0xRsxMAabrJmeGX3hPDwL0Y=
+
+ hash2
+
+ FKXb32Ennc+6f3SkuVdo8bBNcIIWwryV5u5FmQYN8Fc=
+
+
+ Headers/XCTestRun.h
+
+ hash
+
+ 7GVNxTeghh0aBxY/Gvb+j2VTkqQ=
+
+ hash2
+
+ bSeEEos9toHX4ZeMGeRYdv1KXdCziExa2r95Y6Qcem8=
+
+
+ Headers/XCTestSuite.h
+
+ hash
+
+ eRc+OVrMoZSKfP/hWkP9044Xkwo=
+
+ hash2
+
+ L7lrx0/vT/6C441YiHqyBo8c41P7nh8AVfj2Ju9MWF0=
+
+
+ Headers/XCTestSuiteRun.h
+
+ hash
+
+ OX+g52bOAnhjLVDKkweTKM8jTHQ=
+
+ hash2
+
+ QDxhlFfxAJEcudV29W9M96FJW5LQiR0yqdUHzkjMuA0=
+
+
+ Headers/XCUIApplication.h
+
+ hash
+
+ 3xPGyAQELvSZZ4RHMwhQEnlzFhg=
+
+ hash2
+
+ c5JhLgu1HF3BRKMZa+lW3Uv/rhC85w7hROiHmgBDw8k=
+
+
+ Headers/XCUICoordinate.h
+
+ hash
+
+ ISpzcCIN+bNtcvHSlqKq3H0dHAA=
+
+ hash2
+
+ WqIHIIX29PruSt0Ux3ajf2d2Ya6W7ES85APt7RfZEUQ=
+
+
+ Headers/XCUIDevice.h
+
+ hash
+
+ 6pJZzs6nb9PxIhPZMSzM3Pnoyyk=
+
+ hash2
+
+ a332EuTW+1XyYOs10oV/xXmV18ua86gJqI6rQ/QIzJE=
+
+
+ Headers/XCUIElement.h
+
+ hash
+
+ csedByP43miIpAyfC8qT1PdhfSU=
+
+ hash2
+
+ V5BgoHx/+zYmB/DYMS6sZXiTe4L2VJ64K0C1hLijWz4=
+
+
+ Headers/XCUIElementAttributes.h
+
+ hash
+
+ kWitRD0ClLa1hUvctZ6Jw2DmOW8=
+
+ hash2
+
+ 9SI2mH0Fw8cgcd7e5L+9MJCRlhcVP03/Kb6JOrmb4DA=
+
+
+ Headers/XCUIElementQuery.h
+
+ hash
+
+ C3ZXTnkZIFu38bImb5YnKX8ME3s=
+
+ hash2
+
+ LF3E68WtedEEM/IFD3q/tOZ3q0JtUQQhOK4XkamNjNM=
+
+
+ Headers/XCUIElementTypeQueryProvider.h
+
+ hash
+
+ RByqnqCJz+rOh+n5b6A0LWE4ipY=
+
+ hash2
+
+ KPNzI8l6orkq7Lw9Lptey1l4nsXuyg/c9kYgH2/O5x0=
+
+
+ Headers/XCUIElementTypes.h
+
+ hash
+
+ r6naN5HO1+6krqDyXc3YqPmLBgw=
+
+ hash2
+
+ lNOZzyQsfsLBbC8dqjRVWHvvLPL9n0H8lUWk7b6F+40=
+
+
+ Headers/XCUIKeyboardKeys.h
+
+ hash
+
+ N6DDr++AC3URGk9/PoyCGpq5h9k=
+
+ hash2
+
+ I3lWDagvmkuZkcnrVsBHIjUOWuoNmCqRIDZL/NV1Cow=
+
+
+ Headers/XCUIRemote.h
+
+ hash
+
+ +rbCM60bDizOcqH+NaoTiCwtEH4=
+
+ hash2
+
+ w7DXRAekwdX2XMbVLAxEj/q2faSvgp1LMbKGZDcUznE=
+
+
+ Headers/XCUIScreen.h
+
+ hash
+
+ /ub1WB6+9GFwYxGEGsIzKvyt/mg=
+
+ hash2
+
+ DXvaY/5E2v8cBTldGVecRYgu32hr9r4pm3DHS2nDjfw=
+
+
+ Headers/XCUIScreenshot.h
+
+ hash
+
+ WRAFpS5fsJOjpa68uJDYY7QcwzQ=
+
+ hash2
+
+ F2tCZijPx0hU+7CIdW0fMZK4cwKbgFYiI9LKYINt5sU=
+
+
+ Headers/XCUIScreenshotProviding.h
+
+ hash
+
+ qghz8l697gauRG1WZGkXCsisS40=
+
+ hash2
+
+ s35VI6Lzy6LUDsIoANQTenLSsJeaPXvonWElqk8cJbM=
+
+
+ Headers/XCUISiriService.h
+
+ hash
+
+ NtIeUU61kDhd8LGgBr1FjKXe6JQ=
+
+ hash2
+
+ 6JTR/e2zA54rVmT1cblklOkL8LFXaYg81YGhVhoagsw=
+
+
+ Modules/module.modulemap
+
+ hash
+
+ ha0qqLvU0UdkLu07qH5tE4agQV4=
+
+ hash2
+
+ w5Zd8voFpYyDVfx4t9/bCAZAs1kTrhmGSzTXQMiBd/c=
+
+
+ en.lproj/InfoPlist.strings
+
+ hash
+
+ TuBj57ZP6zBqcL9HttO2Rucaw9E=
+
+ hash2
+
+ 89RGkjZaKuewYnjpzwhIswhqfrU8+pcEXqM/DHVrUmo=
+
+ optional
+
+
+ version.plist
+
+ hash
+
+ DmGu9k7yBOLSfwtyNbn3zYir630=
+
+ hash2
+
+ 2hnwNPgdaewT28DbTqe0Gpaccdc2akBF8IjnGtISc58=
+
+
+
+ rules
+
+ ^
+
+ ^.*\.lproj/
+
+ optional
+
+ weight
+ 1000
+
+ ^.*\.lproj/locversion.plist$
+
+ omit
+
+ weight
+ 1100
+
+ ^Base\.lproj/
+
+ weight
+ 1010
+
+ ^version.plist$
+
+
+ rules2
+
+ .*\.dSYM($|/)
+
+ weight
+ 11
+
+ ^
+
+ weight
+ 20
+
+ ^(.*/)?\.DS_Store$
+
+ omit
+
+ weight
+ 2000
+
+ ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/
+
+ nested
+
+ weight
+ 10
+
+ ^.*
+
+ ^.*\.lproj/
+
+ optional
+
+ weight
+ 1000
+
+ ^.*\.lproj/locversion.plist$
+
+ omit
+
+ weight
+ 1100
+
+ ^Base\.lproj/
+
+ weight
+ 1010
+
+ ^Info\.plist$
+
+ omit
+
+ weight
+ 20
+
+ ^PkgInfo$
+
+ omit
+
+ weight
+ 20
+
+ ^[^/]+$
+
+ nested
+
+ weight
+ 10
+
+ ^embedded\.provisionprofile$
+
+ weight
+ 20
+
+ ^version\.plist$
+
+ weight
+ 20
+
+
+
+
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings
new file mode 100644
index 00000000..d6446876
Binary files /dev/null and b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/version.plist b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/version.plist
new file mode 100644
index 00000000..18dd57e5
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Frameworks/XCTest.framework/version.plist
@@ -0,0 +1,18 @@
+
+
+
+
+ BuildAliasOf
+ XCTest
+ BuildVersion
+ 4
+ CFBundleShortVersionString
+ 1.0
+ CFBundleVersion
+ 14100
+ ProjectName
+ XCTest_Sim
+ SourceVersion
+ 14100000000000000
+
+
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Info.plist b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Info.plist
new file mode 100644
index 00000000..9120fc72
Binary files /dev/null and b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/Info.plist differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PkgInfo b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PkgInfo
new file mode 100644
index 00000000..bd04210f
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PkgInfo
@@ -0,0 +1 @@
+APPL????
\ No newline at end of file
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest.dSYM/Contents/Info.plist b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest.dSYM/Contents/Info.plist
new file mode 100644
index 00000000..ee854796
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest.dSYM/Contents/Info.plist
@@ -0,0 +1,20 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ English
+ CFBundleIdentifier
+ com.apple.xcode.dsym.org.reactjs.native.example.RnTestTests
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundlePackageType
+ dSYM
+ CFBundleSignature
+ ????
+ CFBundleShortVersionString
+ 1.0
+ CFBundleVersion
+ 1
+
+
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest.dSYM/Contents/Resources/DWARF/RnTestTests b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest.dSYM/Contents/Resources/DWARF/RnTestTests
new file mode 100644
index 00000000..d54cc00c
Binary files /dev/null and b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest.dSYM/Contents/Resources/DWARF/RnTestTests differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest/Info.plist b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest/Info.plist
new file mode 100644
index 00000000..afdb61a6
Binary files /dev/null and b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest/Info.plist differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest/RnTestTests b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest/RnTestTests
new file mode 100755
index 00000000..aaed81bd
Binary files /dev/null and b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest/RnTestTests differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest/_CodeSignature/CodeResources b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest/_CodeSignature/CodeResources
new file mode 100644
index 00000000..ab04f543
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/PlugIns/RnTestTests.xctest/_CodeSignature/CodeResources
@@ -0,0 +1,120 @@
+
+
+
+
+ files
+
+ Info.plist
+
+ YhGIGpCjnZVrsPE/p1FAgr7gQ+o=
+
+
+ files2
+
+ rules
+
+ ^
+
+ ^.*\.lproj/
+
+ optional
+
+ weight
+ 1000
+
+ ^.*\.lproj/locversion.plist$
+
+ omit
+
+ weight
+ 1100
+
+ ^Base\.lproj/
+
+ weight
+ 1010
+
+ ^version.plist$
+
+
+ rules2
+
+ .*\.dSYM($|/)
+
+ weight
+ 11
+
+ ^
+
+ weight
+ 20
+
+ ^(.*/)?\.DS_Store$
+
+ omit
+
+ weight
+ 2000
+
+ ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/
+
+ nested
+
+ weight
+ 10
+
+ ^.*
+
+ ^.*\.lproj/
+
+ optional
+
+ weight
+ 1000
+
+ ^.*\.lproj/locversion.plist$
+
+ omit
+
+ weight
+ 1100
+
+ ^Base\.lproj/
+
+ weight
+ 1010
+
+ ^Info\.plist$
+
+ omit
+
+ weight
+ 20
+
+ ^PkgInfo$
+
+ omit
+
+ weight
+ 20
+
+ ^[^/]+$
+
+ nested
+
+ weight
+ 10
+
+ ^embedded\.provisionprofile$
+
+ weight
+ 20
+
+ ^version\.plist$
+
+ weight
+ 20
+
+
+
+
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/RnTest b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/RnTest
new file mode 100755
index 00000000..8b8ef42b
Binary files /dev/null and b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/RnTest differ
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/_CodeSignature/CodeResources b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/_CodeSignature/CodeResources
new file mode 100644
index 00000000..74a75e2e
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/RnTest.app/_CodeSignature/CodeResources
@@ -0,0 +1,140 @@
+
+
+
+
+ files
+
+ Base.lproj/LaunchScreen.nib
+
+ noH2vTNlqDmlzXaqtXB805kyfOc=
+
+ Info.plist
+
+ UWzDw4DsIn2O60Tz7BEE0f8Op5g=
+
+ PkgInfo
+
+ n57qDP4tZfLD1rCS43W0B4LQjzE=
+
+
+ files2
+
+ Base.lproj/LaunchScreen.nib
+
+ hash
+
+ noH2vTNlqDmlzXaqtXB805kyfOc=
+
+ hash2
+
+ 7tXb7cYYu+RIqbPWC5MEuNZGRKwdW568WzWQy1/O9+Q=
+
+
+
+ rules
+
+ ^
+
+ ^.*\.lproj/
+
+ optional
+
+ weight
+ 1000
+
+ ^.*\.lproj/locversion.plist$
+
+ omit
+
+ weight
+ 1100
+
+ ^Base\.lproj/
+
+ weight
+ 1010
+
+ ^version.plist$
+
+
+ rules2
+
+ .*\.dSYM($|/)
+
+ weight
+ 11
+
+ ^
+
+ weight
+ 20
+
+ ^(.*/)?\.DS_Store$
+
+ omit
+
+ weight
+ 2000
+
+ ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/
+
+ nested
+
+ weight
+ 10
+
+ ^.*
+
+ ^.*\.lproj/
+
+ optional
+
+ weight
+ 1000
+
+ ^.*\.lproj/locversion.plist$
+
+ omit
+
+ weight
+ 1100
+
+ ^Base\.lproj/
+
+ weight
+ 1010
+
+ ^Info\.plist$
+
+ omit
+
+ weight
+ 20
+
+ ^PkgInfo$
+
+ omit
+
+ weight
+ 20
+
+ ^[^/]+$
+
+ nested
+
+ weight
+ 10
+
+ ^embedded\.provisionprofile$
+
+ weight
+ 20
+
+ ^version\.plist$
+
+ weight
+ 20
+
+
+
+
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTAdditionAnimatedNode.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTAdditionAnimatedNode.h
new file mode 100644
index 00000000..0e2853df
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTAdditionAnimatedNode.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTValueAnimatedNode.h"
+
+@interface RCTAdditionAnimatedNode : RCTValueAnimatedNode
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTAnimatedNode.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTAnimatedNode.h
new file mode 100644
index 00000000..e9d00091
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTAnimatedNode.h
@@ -0,0 +1,49 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+@class RCTNativeAnimatedNodesManager;
+
+@interface RCTAnimatedNode : NSObject
+
+- (instancetype)initWithTag:(NSNumber *)tag
+ config:(NSDictionary *)config NS_DESIGNATED_INITIALIZER;
+
+@property (nonatomic, readonly) NSNumber *nodeTag;
+@property (nonatomic, weak) RCTNativeAnimatedNodesManager *manager;
+@property (nonatomic, copy, readonly) NSDictionary *config;
+
+@property (nonatomic, copy, readonly) NSMapTable *childNodes;
+@property (nonatomic, copy, readonly) NSMapTable *parentNodes;
+
+@property (nonatomic, readonly) BOOL needsUpdate;
+
+/**
+ * Marks a node and its children as needing update.
+ */
+- (void)setNeedsUpdate NS_REQUIRES_SUPER;
+
+/**
+ * The node will update its value if necesarry and only after its parents have updated.
+ */
+- (void)updateNodeIfNecessary NS_REQUIRES_SUPER;
+
+/**
+ * Where the actual update code lives. Called internally from updateNodeIfNecessary
+ */
+- (void)performUpdate NS_REQUIRES_SUPER;
+
+- (void)addChild:(RCTAnimatedNode *)child NS_REQUIRES_SUPER;
+- (void)removeChild:(RCTAnimatedNode *)child NS_REQUIRES_SUPER;
+
+- (void)onAttachedToNode:(RCTAnimatedNode *)parent NS_REQUIRES_SUPER;
+- (void)onDetachedFromNode:(RCTAnimatedNode *)parent NS_REQUIRES_SUPER;
+
+- (void)detachNode NS_REQUIRES_SUPER;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTAnimationDriver.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTAnimationDriver.h
new file mode 100644
index 00000000..40763fd5
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTAnimationDriver.h
@@ -0,0 +1,38 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+#import
+
+#import
+
+static CGFloat RCTSingleFrameInterval = 1.0 / 60.0;
+
+@class RCTValueAnimatedNode;
+
+NS_ASSUME_NONNULL_BEGIN
+
+@protocol RCTAnimationDriver
+
+@property (nonatomic, readonly) NSNumber *animationId;
+@property (nonatomic, readonly) RCTValueAnimatedNode *valueNode;
+@property (nonatomic, readonly) BOOL animationHasBegun;
+@property (nonatomic, readonly) BOOL animationHasFinished;
+
+- (instancetype)initWithId:(NSNumber *)animationId
+ config:(NSDictionary *)config
+ forNode:(RCTValueAnimatedNode *)valueNode
+ callBack:(nullable RCTResponseSenderBlock)callback;
+
+- (void)startAnimation;
+- (void)stepAnimationWithTime:(NSTimeInterval)currentTime;
+- (void)stopAnimation;
+- (void)resetAnimationConfig:(NSDictionary *)config;
+
+NS_ASSUME_NONNULL_END
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTAnimationUtils.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTAnimationUtils.h
new file mode 100644
index 00000000..d1dba830
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTAnimationUtils.h
@@ -0,0 +1,32 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+#import
+
+#import
+
+static NSString *const EXTRAPOLATE_TYPE_IDENTITY = @"identity";
+static NSString *const EXTRAPOLATE_TYPE_CLAMP = @"clamp";
+static NSString *const EXTRAPOLATE_TYPE_EXTEND = @"extend";
+
+RCT_EXTERN CGFloat RCTInterpolateValueInRange(CGFloat value,
+ NSArray *inputRange,
+ NSArray *outputRange,
+ NSString *extrapolateLeft,
+ NSString *extrapolateRight);
+
+RCT_EXTERN CGFloat RCTInterpolateValue(CGFloat value,
+ CGFloat inputMin,
+ CGFloat inputMax,
+ CGFloat outputMin,
+ CGFloat outputMax,
+ NSString *extrapolateLeft,
+ NSString *extrapolateRight);
+
+RCT_EXTERN CGFloat RCTRadiansToDegrees(CGFloat radians);
+RCT_EXTERN CGFloat RCTDegreesToRadians(CGFloat degrees);
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTDecayAnimation.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTDecayAnimation.h
new file mode 100644
index 00000000..d6ae6701
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTDecayAnimation.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTAnimationDriver.h"
+
+@interface RCTDecayAnimation : NSObject
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTDiffClampAnimatedNode.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTDiffClampAnimatedNode.h
new file mode 100644
index 00000000..5d89091e
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTDiffClampAnimatedNode.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTValueAnimatedNode.h"
+
+@interface RCTDiffClampAnimatedNode : RCTValueAnimatedNode
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTDivisionAnimatedNode.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTDivisionAnimatedNode.h
new file mode 100644
index 00000000..0702012d
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTDivisionAnimatedNode.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTValueAnimatedNode.h"
+
+@interface RCTDivisionAnimatedNode : RCTValueAnimatedNode
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTEventAnimation.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTEventAnimation.h
new file mode 100644
index 00000000..c6b6f797
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTEventAnimation.h
@@ -0,0 +1,21 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import "RCTValueAnimatedNode.h"
+
+@interface RCTEventAnimation : NSObject
+
+@property (nonatomic, readonly, weak) RCTValueAnimatedNode *valueNode;
+
+- (instancetype)initWithEventPath:(NSArray *)eventPath
+ valueNode:(RCTValueAnimatedNode *)valueNode;
+
+- (void)updateWithEvent:(id)event;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTFrameAnimation.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTFrameAnimation.h
new file mode 100644
index 00000000..979c45a8
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTFrameAnimation.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTAnimationDriver.h"
+
+@interface RCTFrameAnimation : NSObject
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTInterpolationAnimatedNode.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTInterpolationAnimatedNode.h
new file mode 100644
index 00000000..e083525d
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTInterpolationAnimatedNode.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTValueAnimatedNode.h"
+
+@interface RCTInterpolationAnimatedNode : RCTValueAnimatedNode
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTModuloAnimatedNode.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTModuloAnimatedNode.h
new file mode 100644
index 00000000..08de0e1a
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTModuloAnimatedNode.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTValueAnimatedNode.h"
+
+@interface RCTModuloAnimatedNode : RCTValueAnimatedNode
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTMultiplicationAnimatedNode.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTMultiplicationAnimatedNode.h
new file mode 100644
index 00000000..481c3d5a
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTMultiplicationAnimatedNode.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTValueAnimatedNode.h"
+
+@interface RCTMultiplicationAnimatedNode : RCTValueAnimatedNode
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTNativeAnimatedModule.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTNativeAnimatedModule.h
new file mode 100644
index 00000000..5ca4e95b
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTNativeAnimatedModule.h
@@ -0,0 +1,19 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+#import
+#import
+#import
+#import
+#import
+
+#import "RCTValueAnimatedNode.h"
+
+@interface RCTNativeAnimatedModule : RCTEventEmitter
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTNativeAnimatedNodesManager.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTNativeAnimatedNodesManager.h
new file mode 100644
index 00000000..ae217668
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTNativeAnimatedNodesManager.h
@@ -0,0 +1,86 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import
+#import
+#import
+
+@interface RCTNativeAnimatedNodesManager : NSObject
+
+- (nonnull instancetype)initWithUIManager:(nonnull RCTUIManager *)uiManager;
+
+- (void)updateAnimations;
+
+- (void)stepAnimations:(nonnull CADisplayLink *)displaylink;
+
+// graph
+
+- (void)createAnimatedNode:(nonnull NSNumber *)tag
+ config:(NSDictionary *__nonnull)config;
+
+- (void)connectAnimatedNodes:(nonnull NSNumber *)parentTag
+ childTag:(nonnull NSNumber *)childTag;
+
+- (void)disconnectAnimatedNodes:(nonnull NSNumber *)parentTag
+ childTag:(nonnull NSNumber *)childTag;
+
+- (void)connectAnimatedNodeToView:(nonnull NSNumber *)nodeTag
+ viewTag:(nonnull NSNumber *)viewTag
+ viewName:(nonnull NSString *)viewName;
+
+- (void)restoreDefaultValues:(nonnull NSNumber *)nodeTag;
+
+- (void)disconnectAnimatedNodeFromView:(nonnull NSNumber *)nodeTag
+ viewTag:(nonnull NSNumber *)viewTag;
+
+- (void)dropAnimatedNode:(nonnull NSNumber *)tag;
+
+// mutations
+
+- (void)setAnimatedNodeValue:(nonnull NSNumber *)nodeTag
+ value:(nonnull NSNumber *)value;
+
+- (void)setAnimatedNodeOffset:(nonnull NSNumber *)nodeTag
+ offset:(nonnull NSNumber *)offset;
+
+- (void)flattenAnimatedNodeOffset:(nonnull NSNumber *)nodeTag;
+
+- (void)extractAnimatedNodeOffset:(nonnull NSNumber *)nodeTag;
+
+// drivers
+
+- (void)startAnimatingNode:(nonnull NSNumber *)animationId
+ nodeTag:(nonnull NSNumber *)nodeTag
+ config:(NSDictionary *__nonnull)config
+ endCallback:(nullable RCTResponseSenderBlock)callBack;
+
+- (void)stopAnimation:(nonnull NSNumber *)animationId;
+
+- (void)stopAnimationLoop;
+
+// events
+
+- (void)addAnimatedEventToView:(nonnull NSNumber *)viewTag
+ eventName:(nonnull NSString *)eventName
+ eventMapping:(NSDictionary *__nonnull)eventMapping;
+
+- (void)removeAnimatedEventFromView:(nonnull NSNumber *)viewTag
+ eventName:(nonnull NSString *)eventName
+ animatedNodeTag:(nonnull NSNumber *)animatedNodeTag;
+
+- (void)handleAnimatedEvent:(nonnull id)event;
+
+// listeners
+
+- (void)startListeningToAnimatedNodeValue:(nonnull NSNumber *)tag
+ valueObserver:(nonnull id)valueObserver;
+
+- (void)stopListeningToAnimatedNodeValue:(nonnull NSNumber *)tag;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTPropsAnimatedNode.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTPropsAnimatedNode.h
new file mode 100644
index 00000000..24919120
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTPropsAnimatedNode.h
@@ -0,0 +1,23 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTAnimatedNode.h"
+
+@class RCTUIManager;
+@class RCTViewPropertyMapper;
+
+@interface RCTPropsAnimatedNode : RCTAnimatedNode
+
+- (void)connectToView:(NSNumber *)viewTag
+ viewName:(NSString *)viewName
+ uiManager:(RCTUIManager *)uiManager;
+
+- (void)disconnectFromView:(NSNumber *)viewTag;
+
+- (void)restoreDefaultValues;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTSpringAnimation.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTSpringAnimation.h
new file mode 100644
index 00000000..fe721f61
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTSpringAnimation.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTAnimationDriver.h"
+
+@interface RCTSpringAnimation : NSObject
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTStyleAnimatedNode.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTStyleAnimatedNode.h
new file mode 100644
index 00000000..637b120c
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTStyleAnimatedNode.h
@@ -0,0 +1,14 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTAnimatedNode.h"
+
+@interface RCTStyleAnimatedNode : RCTAnimatedNode
+
+- (NSDictionary *)propsDictionary;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTTransformAnimatedNode.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTTransformAnimatedNode.h
new file mode 100644
index 00000000..59d6951d
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTTransformAnimatedNode.h
@@ -0,0 +1,14 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTAnimatedNode.h"
+
+@interface RCTTransformAnimatedNode : RCTAnimatedNode
+
+- (NSDictionary *)propsDictionary;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTValueAnimatedNode.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTValueAnimatedNode.h
new file mode 100644
index 00000000..8360dc65
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTAnimation/RCTValueAnimatedNode.h
@@ -0,0 +1,29 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import "RCTAnimatedNode.h"
+
+@class RCTValueAnimatedNode;
+
+@protocol RCTValueAnimatedNodeObserver
+
+- (void)animatedNode:(RCTValueAnimatedNode *)node didUpdateValue:(CGFloat)value;
+
+@end
+
+@interface RCTValueAnimatedNode : RCTAnimatedNode
+
+- (void)setOffset:(CGFloat)offset;
+- (void)flattenOffset;
+- (void)extractOffset;
+
+@property (nonatomic, assign) CGFloat value;
+@property (nonatomic, weak) id valueObserver;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTBlob/RCTBlobManager.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTBlob/RCTBlobManager.h
new file mode 100755
index 00000000..24b589ef
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTBlob/RCTBlobManager.h
@@ -0,0 +1,28 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+#import
+#import
+
+@interface RCTBlobManager : NSObject
+
+- (NSString *)store:(NSData *)data;
+
+- (void)store:(NSData *)data withId:(NSString *)blobId;
+
+- (NSData *)resolve:(NSDictionary *)blob;
+
+- (NSData *)resolve:(NSString *)blobId offset:(NSInteger)offset size:(NSInteger)size;
+
+- (NSData *)resolveURL:(NSURL *)url;
+
+- (void)remove:(NSString *)blobId;
+
+- (void)createFromParts:(NSArray *> *)parts withId:(NSString *)blobId;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTBlob/RCTFileReaderModule.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTBlob/RCTFileReaderModule.h
new file mode 100644
index 00000000..72d224b0
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTBlob/RCTFileReaderModule.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+@interface RCTFileReaderModule : NSObject
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTImage/RCTImageUtils.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTImage/RCTImageUtils.h
new file mode 100644
index 00000000..d6090ac6
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTImage/RCTImageUtils.h
@@ -0,0 +1,94 @@
+/*
+ * Copyright (c) 2013-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ *
+ */
+
+#import
+
+#import
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+/**
+ * This function takes an source size (typically from an image), a target size
+ * and scale that it will be drawn at (typically in a CGContext) and then
+ * calculates the rectangle to draw the image into so that it will be sized and
+ * positioned correctly according to the specified resizeMode.
+ */
+RCT_EXTERN CGRect RCTTargetRect(CGSize sourceSize, CGSize destSize,
+ CGFloat destScale, RCTResizeMode resizeMode);
+
+/**
+ * This function takes a source size (typically from an image), a target rect
+ * that it will be drawn into (typically relative to a CGContext), and works out
+ * the transform needed to draw the image at the correct scale and position.
+ */
+RCT_EXTERN CGAffineTransform RCTTransformFromTargetRect(CGSize sourceSize,
+ CGRect targetRect);
+
+/**
+ * This function takes an input content size & scale (typically from an image),
+ * a target size & scale at which it will be displayed (typically in a
+ * UIImageView) and then calculates the optimal size at which to redraw the
+ * image so that it will be displayed correctly with the specified resizeMode.
+ */
+RCT_EXTERN CGSize RCTTargetSize(CGSize sourceSize, CGFloat sourceScale,
+ CGSize destSize, CGFloat destScale,
+ RCTResizeMode resizeMode, BOOL allowUpscaling);
+
+/**
+ * This function takes an input content size & scale (typically from an image),
+ * a target size & scale that it will be displayed at, and determines if the
+ * source will need to be upscaled to fit (which may result in pixelization).
+ */
+RCT_EXTERN BOOL RCTUpscalingRequired(CGSize sourceSize, CGFloat sourceScale,
+ CGSize destSize, CGFloat destScale,
+ RCTResizeMode resizeMode);
+
+/**
+ * This function takes the source data for an image and decodes it at the
+ * specified size. If the original image is smaller than the destination size,
+ * the resultant image's scale will be decreased to compensate, so the
+ * width/height of the returned image is guaranteed to be >= destSize.
+ * Pass a destSize of CGSizeZero to decode the image at its original size.
+ */
+RCT_EXTERN UIImage *__nullable RCTDecodeImageWithData(NSData *data,
+ CGSize destSize,
+ CGFloat destScale,
+ RCTResizeMode resizeMode);
+
+/**
+ * This function takes the source data for an image and decodes just the
+ * metadata, without decompressing the image itself.
+ */
+RCT_EXTERN NSDictionary *__nullable RCTGetImageMetadata(NSData *data);
+
+/**
+ * Convert an image back into data. Images with an alpha channel will be
+ * converted to lossless PNG data. Images without alpha will be converted to
+ * JPEG. The `quality` argument controls the compression ratio of the JPEG
+ * conversion, with 1.0 being maximum quality. It has no effect for images
+ * using PNG compression.
+ */
+RCT_EXTERN NSData *__nullable RCTGetImageData(UIImage *image, float quality);
+
+/**
+ * This function transforms an image. `destSize` is the size of the final image,
+ * and `destScale` is its scale. The `transform` argument controls how the
+ * source image will be mapped to the destination image.
+ */
+RCT_EXTERN UIImage *__nullable RCTTransformImage(UIImage *image,
+ CGSize destSize,
+ CGFloat destScale,
+ CGAffineTransform transform);
+
+/*
+ * Return YES if image has an alpha component
+ */
+RCT_EXTERN BOOL RCTImageHasAlpha(CGImageRef image);
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/NSTextStorage+FontScaling.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/NSTextStorage+FontScaling.h
new file mode 100644
index 00000000..8372a0d2
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/NSTextStorage+FontScaling.h
@@ -0,0 +1,20 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+@interface NSTextStorage (FontScaling)
+
+- (void)scaleFontSizeToFitSize:(CGSize)size
+ minimumFontSize:(CGFloat)minimumFontSize
+ maximumFontSize:(CGFloat)maximumFontSize;
+
+- (void)scaleFontSizeWithRatio:(CGFloat)ratio
+ minimumFontSize:(CGFloat)minimumFontSize
+ maximumFontSize:(CGFloat)maximumFontSize;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBackedTextInputDelegate.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBackedTextInputDelegate.h
new file mode 100644
index 00000000..c580a11e
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBackedTextInputDelegate.h
@@ -0,0 +1,32 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+@protocol RCTBackedTextInputViewProtocol;
+
+NS_ASSUME_NONNULL_BEGIN
+
+@protocol RCTBackedTextInputDelegate
+
+- (BOOL)textInputShouldBeginEditing; // Return `NO` to disallow editing.
+- (void)textInputDidBeginEditing;
+
+- (BOOL)textInputShouldEndEditing; // Return `YES` to allow editing to stop and to resign first responder status. `NO` to disallow the editing session to end.
+- (void)textInputDidEndEditing; // May be called if forced even if `textInputShouldEndEditing` returns `NO` (e.g. view removed from window) or `[textInput endEditing:YES]` called.
+
+- (BOOL)textInputShouldReturn; // May be called right before `textInputShouldEndEditing` if "Return" button was pressed.
+- (void)textInputDidReturn;
+
+- (BOOL)textInputShouldChangeTextInRange:(NSRange)range replacementText:(NSString *)string; // Return NO to not change text.
+- (void)textInputDidChange;
+
+- (void)textInputDidChangeSelection;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBackedTextInputDelegateAdapter.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBackedTextInputDelegateAdapter.h
new file mode 100644
index 00000000..6968313a
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBackedTextInputDelegateAdapter.h
@@ -0,0 +1,36 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import "RCTBackedTextInputViewProtocol.h"
+#import "RCTBackedTextInputDelegate.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+#pragma mark - RCTBackedTextFieldDelegateAdapter (for UITextField)
+
+@interface RCTBackedTextFieldDelegateAdapter : NSObject
+
+- (instancetype)initWithTextField:(UITextField *)backedTextInputView;
+
+- (void)skipNextTextInputDidChangeSelectionEventWithTextRange:(UITextRange *)textRange;
+- (void)selectedTextRangeWasSet;
+
+@end
+
+#pragma mark - RCTBackedTextViewDelegateAdapter (for UITextView)
+
+@interface RCTBackedTextViewDelegateAdapter : NSObject
+
+- (instancetype)initWithTextView:(UITextView *)backedTextInputView;
+
+- (void)skipNextTextInputDidChangeSelectionEventWithTextRange:(UITextRange *)textRange;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBackedTextInputViewProtocol.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBackedTextInputViewProtocol.h
new file mode 100644
index 00000000..d19e2210
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBackedTextInputViewProtocol.h
@@ -0,0 +1,43 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+@protocol RCTBackedTextInputDelegate;
+
+NS_ASSUME_NONNULL_BEGIN
+
+@protocol RCTBackedTextInputViewProtocol
+
+@property (nonatomic, strong, nullable) UIColor *textColor;
+@property (nonatomic, strong, nullable) UIFont *font;
+@property (nonatomic, copy, nullable) NSAttributedString *attributedText;
+@property (nonatomic, copy, nullable) NSString *placeholder;
+@property (nonatomic, strong, nullable) UIColor *placeholderColor;
+@property (nonatomic, assign) NSTextAlignment textAlignment;
+@property (nonatomic, assign, readonly) BOOL textWasPasted;
+@property (nonatomic, assign) UIEdgeInsets textContainerInset;
+@property (nonatomic, strong, nullable) UIView *inputAccessoryView;
+@property (nonatomic, weak, nullable) id textInputDelegate;
+@property (nonatomic, readonly) CGSize contentSize;
+
+// This protocol disallows direct access to `selectedTextRange` property because
+// unwise usage of it can break the `delegate` behavior. So, we always have to
+// explicitly specify should `delegate` be notified about the change or not.
+// If the change was initiated programmatically, we must NOT notify the delegate.
+// If the change was a result of user actions (like typing or touches), we MUST notify the delegate.
+- (void)setSelectedTextRange:(nullable UITextRange *)selectedTextRange NS_UNAVAILABLE;
+- (void)setSelectedTextRange:(nullable UITextRange *)selectedTextRange notifyDelegate:(BOOL)notifyDelegate;
+
+// This protocol disallows direct access to `text` property because
+// unwise usage of it can break the `attributeText` behavior.
+// Use `attributedText.string` instead.
+@property (nonatomic, copy, nullable) NSString *text NS_UNAVAILABLE;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextInputShadowView.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextInputShadowView.h
new file mode 100644
index 00000000..ea8abd3f
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextInputShadowView.h
@@ -0,0 +1,25 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTBaseTextShadowView.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RCTBaseTextInputShadowView : RCTBaseTextShadowView
+
+- (instancetype)initWithBridge:(RCTBridge *)bridge;
+
+@property (nonatomic, copy, nullable) NSString *text;
+@property (nonatomic, copy, nullable) NSString *placeholder;
+@property (nonatomic, assign) NSInteger maximumNumberOfLines;
+@property (nonatomic, copy, nullable) RCTDirectEventBlock onContentSizeChange;
+
+- (void)uiManagerWillPerformMounting;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextInputView.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextInputView.h
new file mode 100644
index 00000000..6de343f2
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextInputView.h
@@ -0,0 +1,53 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import
+
+#import "RCTBackedTextInputDelegate.h"
+#import "RCTBackedTextInputViewProtocol.h"
+
+@class RCTBridge;
+@class RCTEventDispatcher;
+@class RCTTextAttributes;
+@class RCTTextSelection;
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RCTBaseTextInputView : RCTView
+
+- (instancetype)initWithBridge:(RCTBridge *)bridge NS_DESIGNATED_INITIALIZER;
+
+- (instancetype)init NS_UNAVAILABLE;
+- (instancetype)initWithCoder:(NSCoder *)decoder NS_UNAVAILABLE;
+- (instancetype)initWithFrame:(CGRect)frame NS_UNAVAILABLE;
+
+@property (nonatomic, readonly) UIView *backedTextInputView;
+
+@property (nonatomic, strong, nullable) RCTTextAttributes *textAttributes;
+@property (nonatomic, assign) UIEdgeInsets reactPaddingInsets;
+@property (nonatomic, assign) UIEdgeInsets reactBorderInsets;
+
+@property (nonatomic, copy, nullable) RCTDirectEventBlock onContentSizeChange;
+@property (nonatomic, copy, nullable) RCTDirectEventBlock onSelectionChange;
+@property (nonatomic, copy, nullable) RCTDirectEventBlock onChange;
+@property (nonatomic, copy, nullable) RCTDirectEventBlock onTextInput;
+@property (nonatomic, copy, nullable) RCTDirectEventBlock onScroll;
+
+@property (nonatomic, assign) NSInteger mostRecentEventCount;
+@property (nonatomic, assign) BOOL blurOnSubmit;
+@property (nonatomic, assign) BOOL selectTextOnFocus;
+@property (nonatomic, assign) BOOL clearTextOnFocus;
+@property (nonatomic, copy) RCTTextSelection *selection;
+@property (nonatomic, strong, nullable) NSNumber *maxLength;
+@property (nonatomic, copy) NSAttributedString *attributedText;
+@property (nonatomic, copy) NSString *inputAccessoryViewID;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextInputViewManager.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextInputViewManager.h
new file mode 100644
index 00000000..c370779b
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextInputViewManager.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTBaseTextViewManager.h"
+
+@interface RCTBaseTextInputViewManager : RCTBaseTextViewManager
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextShadowView.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextShadowView.h
new file mode 100644
index 00000000..331d1ca2
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextShadowView.h
@@ -0,0 +1,24 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import "RCTTextAttributes.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+extern NSString *const RCTBaseTextShadowViewEmbeddedShadowViewAttributeName;
+
+@interface RCTBaseTextShadowView : RCTShadowView
+
+@property (nonatomic, strong) RCTTextAttributes *textAttributes;
+
+- (NSAttributedString *)attributedTextWithBaseTextAttributes:(nullable RCTTextAttributes *)baseTextAttributes;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextViewManager.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextViewManager.h
new file mode 100644
index 00000000..b6c105e3
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTBaseTextViewManager.h
@@ -0,0 +1,16 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RCTBaseTextViewManager : RCTViewManager
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTConvert+Text.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTConvert+Text.h
new file mode 100644
index 00000000..4cead094
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTConvert+Text.h
@@ -0,0 +1,19 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RCTConvert (Text)
+
++ (UITextAutocorrectionType)UITextAutocorrectionType:(nullable id)json;
++ (UITextSpellCheckingType)UITextSpellCheckingType:(nullable id)json;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTMultilineTextInputView.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTMultilineTextInputView.h
new file mode 100644
index 00000000..97466f4d
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTMultilineTextInputView.h
@@ -0,0 +1,16 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTBaseTextInputView.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RCTMultilineTextInputView : RCTBaseTextInputView
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTMultilineTextInputViewManager.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTMultilineTextInputViewManager.h
new file mode 100644
index 00000000..db6c6275
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTMultilineTextInputViewManager.h
@@ -0,0 +1,16 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTBaseTextInputViewManager.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RCTMultilineTextInputViewManager : RCTBaseTextInputViewManager
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTRawTextShadowView.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTRawTextShadowView.h
new file mode 100644
index 00000000..51760308
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTRawTextShadowView.h
@@ -0,0 +1,18 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RCTRawTextShadowView : RCTShadowView
+
+@property (nonatomic, copy, nullable) NSString *text;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTRawTextViewManager.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTRawTextViewManager.h
new file mode 100644
index 00000000..8ff30281
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTRawTextViewManager.h
@@ -0,0 +1,16 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RCTRawTextViewManager : RCTViewManager
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTSinglelineTextInputView.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTSinglelineTextInputView.h
new file mode 100644
index 00000000..1c99fed6
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTSinglelineTextInputView.h
@@ -0,0 +1,16 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTBaseTextInputView.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RCTSinglelineTextInputView : RCTBaseTextInputView
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTSinglelineTextInputViewManager.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTSinglelineTextInputViewManager.h
new file mode 100644
index 00000000..b19ff183
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTSinglelineTextInputViewManager.h
@@ -0,0 +1,16 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTBaseTextInputViewManager.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RCTSinglelineTextInputViewManager : RCTBaseTextInputViewManager
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextAttributes.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextAttributes.h
new file mode 100644
index 00000000..df9171c8
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextAttributes.h
@@ -0,0 +1,83 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+extern NSString *const RCTTextAttributesIsHighlightedAttributeName;
+extern NSString *const RCTTextAttributesTagAttributeName;
+
+/**
+ * Represents knowledge about all supported *text* attributes
+ * assigned to some text component such as , ,
+ * and .
+ */
+@interface RCTTextAttributes : NSObject
+
+// Color
+@property (nonatomic, strong, nullable) UIColor *foregroundColor;
+@property (nonatomic, strong, nullable) UIColor *backgroundColor;
+@property (nonatomic, assign) CGFloat opacity;
+// Font
+@property (nonatomic, copy, nullable) NSString *fontFamily;
+@property (nonatomic, assign) CGFloat fontSize;
+@property (nonatomic, assign) CGFloat fontSizeMultiplier;
+@property (nonatomic, copy, nullable) NSString *fontWeight;
+@property (nonatomic, copy, nullable) NSString *fontStyle;
+@property (nonatomic, copy, nullable) NSArray *fontVariant;
+@property (nonatomic, assign) BOOL allowFontScaling;
+@property (nonatomic, assign) CGFloat letterSpacing;
+// Paragraph Styles
+@property (nonatomic, assign) CGFloat lineHeight;
+@property (nonatomic, assign) NSTextAlignment alignment;
+@property (nonatomic, assign) NSWritingDirection baseWritingDirection;
+// Decoration
+@property (nonatomic, strong, nullable) UIColor *textDecorationColor;
+@property (nonatomic, assign) NSUnderlineStyle textDecorationStyle;
+@property (nonatomic, assign) RCTTextDecorationLineType textDecorationLine;
+// Shadow
+@property (nonatomic, assign) CGSize textShadowOffset;
+@property (nonatomic, assign) CGFloat textShadowRadius;
+@property (nonatomic, strong, nullable) UIColor *textShadowColor;
+// Special
+@property (nonatomic, assign) BOOL isHighlighted;
+@property (nonatomic, strong, nullable) NSNumber *tag;
+@property (nonatomic, assign) UIUserInterfaceLayoutDirection layoutDirection;
+
+#pragma mark - Inheritance
+
+- (void)applyTextAttributes:(RCTTextAttributes *)textAttributes;
+
+#pragma mark - Adapters
+
+/**
+ * Text attributes in NSAttributedString terms.
+ */
+- (NSDictionary *)effectiveTextAttributes;
+
+/**
+ * Constructed font.
+ */
+- (UIFont *)effectiveFont;
+
+/**
+ * Font size multiplier reflects `allowFontScaling` and `fontSizeMultiplier`.
+ */
+- (CGFloat)effectiveFontSizeMultiplier;
+
+/**
+ * Foreground and background colors with opacity and right defaults.
+ */
+- (UIColor *)effectiveForegroundColor;
+- (UIColor *)effectiveBackgroundColor;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextSelection.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextSelection.h
new file mode 100644
index 00000000..b77746a9
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextSelection.h
@@ -0,0 +1,26 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+/**
+ * Object containing information about a TextInput's selection.
+ */
+@interface RCTTextSelection : NSObject
+
+@property (nonatomic, assign, readonly) NSInteger start;
+@property (nonatomic, assign, readonly) NSInteger end;
+
+- (instancetype)initWithStart:(NSInteger)start end:(NSInteger)end;
+
+@end
+
+@interface RCTConvert (RCTTextSelection)
+
++ (RCTTextSelection *)RCTTextSelection:(id)json;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextShadowView.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextShadowView.h
new file mode 100644
index 00000000..d62748df
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextShadowView.h
@@ -0,0 +1,27 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import "RCTBaseTextShadowView.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RCTTextShadowView : RCTBaseTextShadowView
+
+- (instancetype)initWithBridge:(RCTBridge *)bridge;
+
+@property (nonatomic, assign) NSInteger maximumNumberOfLines;
+@property (nonatomic, assign) NSLineBreakMode lineBreakMode;
+@property (nonatomic, assign) BOOL adjustsFontSizeToFit;
+@property (nonatomic, assign) CGFloat minimumFontScale;
+
+- (void)uiManagerWillPerformMounting;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextView.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextView.h
new file mode 100644
index 00000000..b8923b1e
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextView.h
@@ -0,0 +1,22 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RCTTextView : UIView
+
+@property (nonatomic, assign) BOOL selectable;
+
+- (void)setTextStorage:(NSTextStorage *)textStorage
+ contentFrame:(CGRect)contentFrame
+ descendantViews:(NSArray *)descendantViews;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextViewManager.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextViewManager.h
new file mode 100644
index 00000000..d11e4b59
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTTextViewManager.h
@@ -0,0 +1,14 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import "RCTBaseTextViewManager.h"
+
+@interface RCTTextViewManager : RCTBaseTextViewManager
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTUITextField.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTUITextField.h
new file mode 100644
index 00000000..a2e7a0e0
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTUITextField.h
@@ -0,0 +1,32 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import "RCTBackedTextInputViewProtocol.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+/*
+ * Just regular UITextField... but much better!
+ */
+@interface RCTUITextField : UITextField
+
+- (instancetype)initWithCoder:(NSCoder *)decoder NS_UNAVAILABLE;
+
+@property (nonatomic, weak) id textInputDelegate;
+
+@property (nonatomic, assign) BOOL caretHidden;
+@property (nonatomic, assign) BOOL contextMenuHidden;
+@property (nonatomic, assign, readonly) BOOL textWasPasted;
+@property (nonatomic, strong, nullable) UIColor *placeholderColor;
+@property (nonatomic, assign) UIEdgeInsets textContainerInset;
+@property (nonatomic, assign, getter=isEditable) BOOL editable;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTUITextView.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTUITextView.h
new file mode 100644
index 00000000..cb817cba
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTUITextView.h
@@ -0,0 +1,43 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import "RCTBackedTextInputViewProtocol.h"
+
+#import "RCTBackedTextInputDelegate.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+/*
+ * Just regular UITextView... but much better!
+ */
+@interface RCTUITextView : UITextView
+
+- (instancetype)initWithFrame:(CGRect)frame textContainer:(nullable NSTextContainer *)textContainer NS_UNAVAILABLE;
+- (instancetype)initWithCoder:(NSCoder *)decoder NS_UNAVAILABLE;
+
+@property (nonatomic, weak) id textInputDelegate;
+
+@property (nonatomic, assign) BOOL contextMenuHidden;
+@property (nonatomic, assign, readonly) BOOL textWasPasted;
+@property (nonatomic, copy, nullable) NSString *placeholder;
+@property (nonatomic, strong, nullable) UIColor *placeholderColor;
+
+@property (nonatomic, assign) CGFloat preferredMaxLayoutWidth;
+
+// The `clearButtonMode` property actually is not supported yet;
+// it's declared here only to conform to the interface.
+@property (nonatomic, assign) UITextFieldViewMode clearButtonMode;
+
+// The `caretHidden` property actually is not supported yet;
+// it's declared here only to conform to the interface.
+@property (nonatomic, assign) BOOL caretHidden;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTVirtualTextShadowView.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTVirtualTextShadowView.h
new file mode 100644
index 00000000..159a155f
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTVirtualTextShadowView.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTBaseTextShadowView.h"
+
+@interface RCTVirtualTextShadowView : RCTBaseTextShadowView
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTVirtualTextViewManager.h b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTVirtualTextViewManager.h
new file mode 100644
index 00000000..cf2072f5
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/RCTText/RCTVirtualTextViewManager.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import "RCTBaseTextViewManager.h"
+
+@interface RCTVirtualTextViewManager : RCTBaseTextViewManager
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAccessibilityManager.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAccessibilityManager.h
new file mode 100644
index 00000000..0e153afb
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAccessibilityManager.h
@@ -0,0 +1,30 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import
+#import
+
+extern NSString *const RCTAccessibilityManagerDidUpdateMultiplierNotification; // posted when multiplier is changed
+
+@interface RCTAccessibilityManager : NSObject
+
+@property (nonatomic, readonly) CGFloat multiplier;
+
+/// map from UIKit categories to multipliers
+@property (nonatomic, copy) NSDictionary *multipliers;
+
+@property (nonatomic, assign) BOOL isVoiceOverEnabled;
+
+@end
+
+@interface RCTBridge (RCTAccessibilityManager)
+
+@property (nonatomic, readonly) RCTAccessibilityManager *accessibilityManager;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTActivityIndicatorView.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTActivityIndicatorView.h
new file mode 100644
index 00000000..580ae778
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTActivityIndicatorView.h
@@ -0,0 +1,11 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+@interface RCTActivityIndicatorView : UIActivityIndicatorView
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTActivityIndicatorViewManager.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTActivityIndicatorViewManager.h
new file mode 100644
index 00000000..9871a9d7
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTActivityIndicatorViewManager.h
@@ -0,0 +1,18 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+@interface RCTConvert (UIActivityIndicatorView)
+
++ (UIActivityIndicatorViewStyle)UIActivityIndicatorViewStyle:(id)json;
+
+@end
+
+@interface RCTActivityIndicatorViewManager : RCTViewManager
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAlertManager.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAlertManager.h
new file mode 100644
index 00000000..7999dd1c
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAlertManager.h
@@ -0,0 +1,23 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import
+#import
+
+typedef NS_ENUM(NSInteger, RCTAlertViewStyle) {
+ RCTAlertViewStyleDefault = 0,
+ RCTAlertViewStyleSecureTextInput,
+ RCTAlertViewStylePlainTextInput,
+ RCTAlertViewStyleLoginAndPasswordInput
+};
+
+
+@interface RCTAlertManager : NSObject
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h
new file mode 100644
index 00000000..fb3ddc3c
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAnimationType.h
@@ -0,0 +1,17 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+typedef NS_ENUM(NSInteger, RCTAnimationType) {
+ RCTAnimationTypeSpring = 0,
+ RCTAnimationTypeLinear,
+ RCTAnimationTypeEaseIn,
+ RCTAnimationTypeEaseOut,
+ RCTAnimationTypeEaseInEaseOut,
+ RCTAnimationTypeKeyboard,
+};
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAppState.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAppState.h
new file mode 100644
index 00000000..7d56cab6
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAppState.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+@interface RCTAppState : RCTEventEmitter
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h
new file mode 100644
index 00000000..5e60a7b2
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAssert.h
@@ -0,0 +1,153 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import
+
+/*
+ * Defined in RCTUtils.m
+ */
+RCT_EXTERN BOOL RCTIsMainQueue(void);
+
+/**
+ * This is the main assert macro that you should use. Asserts should be compiled out
+ * in production builds. You can customize the assert behaviour by setting a custom
+ * assert handler through `RCTSetAssertFunction`.
+ */
+#ifndef NS_BLOCK_ASSERTIONS
+#define RCTAssert(condition, ...) do { \
+ if ((condition) == 0) { \
+ _RCTAssertFormat(#condition, __FILE__, __LINE__, __func__, __VA_ARGS__); \
+ if (RCT_NSASSERT) { \
+ [[NSAssertionHandler currentHandler] handleFailureInFunction:@(__func__) \
+ file:@(__FILE__) lineNumber:__LINE__ description:__VA_ARGS__]; \
+ } \
+ } \
+} while (false)
+#else
+#define RCTAssert(condition, ...) do {} while (false)
+#endif
+RCT_EXTERN void _RCTAssertFormat(
+ const char *, const char *, int, const char *, NSString *, ...
+) NS_FORMAT_FUNCTION(5,6);
+
+/**
+ * Report a fatal condition when executing. These calls will _NOT_ be compiled out
+ * in production, and crash the app by default. You can customize the fatal behaviour
+ * by setting a custom fatal handler through `RCTSetFatalHandler`.
+ */
+RCT_EXTERN void RCTFatal(NSError *error);
+
+/**
+ * The default error domain to be used for React errors.
+ */
+RCT_EXTERN NSString *const RCTErrorDomain;
+
+/**
+ * JS Stack trace provided as part of an NSError's userInfo
+ */
+RCT_EXTERN NSString *const RCTJSStackTraceKey;
+
+/**
+ * Raw JS Stack trace string provided as part of an NSError's userInfo
+ */
+RCT_EXTERN NSString *const RCTJSRawStackTraceKey;
+
+/**
+ * Name of fatal exceptions generated by RCTFatal
+ */
+RCT_EXTERN NSString *const RCTFatalExceptionName;
+
+/**
+ * A block signature to be used for custom assertion handling.
+ */
+typedef void (^RCTAssertFunction)(NSString *condition,
+ NSString *fileName,
+ NSNumber *lineNumber,
+ NSString *function,
+ NSString *message);
+
+typedef void (^RCTFatalHandler)(NSError *error);
+
+/**
+ * Convenience macro for asserting that a parameter is non-nil/non-zero.
+ */
+#define RCTAssertParam(name) RCTAssert(name, @"'%s' is a required parameter", #name)
+
+/**
+ * Convenience macro for asserting that we're running on main queue.
+ */
+#define RCTAssertMainQueue() RCTAssert(RCTIsMainQueue(), \
+ @"This function must be called on the main queue")
+
+/**
+ * Convenience macro for asserting that we're running off the main queue.
+ */
+#define RCTAssertNotMainQueue() RCTAssert(!RCTIsMainQueue(), \
+@"This function must not be called on the main queue")
+
+/**
+ * These methods get and set the current assert function called by the RCTAssert
+ * macros. You can use these to replace the standard behavior with custom assert
+ * functionality.
+ */
+RCT_EXTERN void RCTSetAssertFunction(RCTAssertFunction assertFunction);
+RCT_EXTERN RCTAssertFunction RCTGetAssertFunction(void);
+
+/**
+ * This appends additional code to the existing assert function, without
+ * replacing the existing functionality. Useful if you just want to forward
+ * assert info to an extra service without changing the default behavior.
+ */
+RCT_EXTERN void RCTAddAssertFunction(RCTAssertFunction assertFunction);
+
+/**
+ * This method temporarily overrides the assert function while performing the
+ * specified block. This is useful for testing purposes (to detect if a given
+ * function asserts something) or to suppress or override assertions temporarily.
+ */
+RCT_EXTERN void RCTPerformBlockWithAssertFunction(void (^block)(void), RCTAssertFunction assertFunction);
+
+/**
+ These methods get and set the current fatal handler called by the RCTFatal method.
+ */
+RCT_EXTERN void RCTSetFatalHandler(RCTFatalHandler fatalHandler);
+RCT_EXTERN RCTFatalHandler RCTGetFatalHandler(void);
+
+/**
+ * Get the current thread's name (or the current queue, if in debug mode)
+ */
+RCT_EXTERN NSString *RCTCurrentThreadName(void);
+
+/**
+ * Helper to get generate exception message from NSError
+ */
+RCT_EXTERN NSString *RCTFormatError(NSString *message, NSArray *> *stacktrace, NSUInteger maxMessageLength);
+
+/**
+ * Convenience macro to assert which thread is currently running (DEBUG mode only)
+ */
+#if DEBUG
+
+#define RCTAssertThread(thread, format...) \
+_Pragma("clang diagnostic push") \
+_Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"") \
+RCTAssert( \
+ [(id)thread isKindOfClass:[NSString class]] ? \
+ [RCTCurrentThreadName() isEqualToString:(NSString *)thread] : \
+ [(id)thread isKindOfClass:[NSThread class]] ? \
+ [NSThread currentThread] == (NSThread *)thread : \
+ dispatch_get_current_queue() == (dispatch_queue_t)thread, \
+ format); \
+_Pragma("clang diagnostic pop")
+
+#else
+
+#define RCTAssertThread(thread, format...) do { } while (0)
+
+#endif
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAsyncLocalStorage.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAsyncLocalStorage.h
new file mode 100644
index 00000000..446a54f7
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAsyncLocalStorage.h
@@ -0,0 +1,34 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+#import
+
+/**
+ * A simple, asynchronous, persistent, key-value storage system designed as a
+ * backend to the AsyncStorage JS module, which is modeled after LocalStorage.
+ *
+ * Current implementation stores small values in serialized dictionary and
+ * larger values in separate files. Since we use a serial file queue
+ * `RKFileQueue`, reading/writing from multiple threads should be perceived as
+ * being atomic, unless someone bypasses the `RCTAsyncLocalStorage` API.
+ *
+ * Keys and values must always be strings or an error is returned.
+ */
+@interface RCTAsyncLocalStorage : NSObject
+
+@property (nonatomic, assign) BOOL clearOnInvalidate;
+
+@property (nonatomic, readonly, getter=isValid) BOOL valid;
+
+// Clear the RCTAsyncLocalStorage data from native code
+- (void)clearAllData;
+
+// For clearing data when the bridge may not exist, e.g. when logging out.
++ (void)clearAllData;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAutoInsetsProtocol.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAutoInsetsProtocol.h
new file mode 100644
index 00000000..934f4702
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTAutoInsetsProtocol.h
@@ -0,0 +1,27 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+/**
+ * Defines a View that wants to support auto insets adjustment
+ */
+@protocol RCTAutoInsetsProtocol
+
+@property (nonatomic, assign, readwrite) UIEdgeInsets contentInset;
+@property (nonatomic, assign, readwrite) BOOL automaticallyAdjustContentInsets;
+
+/**
+ * Automatically adjusted content inset depends on view controller's top and bottom
+ * layout guides so if you've changed one of them (e.g. after rotation or manually) you should call this method
+ * to recalculate and refresh content inset.
+ * To handle case with changing navigation bar height call this method from viewDidLayoutSubviews:
+ * of your view controller.
+ */
+- (void)refreshContentInset;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderDrawing.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderDrawing.h
new file mode 100644
index 00000000..089f92fa
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderDrawing.h
@@ -0,0 +1,67 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import
+
+typedef struct {
+ CGFloat topLeft;
+ CGFloat topRight;
+ CGFloat bottomLeft;
+ CGFloat bottomRight;
+} RCTCornerRadii;
+
+typedef struct {
+ CGSize topLeft;
+ CGSize topRight;
+ CGSize bottomLeft;
+ CGSize bottomRight;
+} RCTCornerInsets;
+
+typedef struct {
+ CGColorRef top;
+ CGColorRef left;
+ CGColorRef bottom;
+ CGColorRef right;
+} RCTBorderColors;
+
+/**
+ * Determine if the border widths, colors and radii are all equal.
+ */
+BOOL RCTBorderInsetsAreEqual(UIEdgeInsets borderInsets);
+BOOL RCTCornerRadiiAreEqual(RCTCornerRadii cornerRadii);
+BOOL RCTBorderColorsAreEqual(RCTBorderColors borderColors);
+
+/**
+ * Convert RCTCornerRadii to RCTCornerInsets by applying border insets.
+ * Effectively, returns radius - inset, with a lower bound of 0.0.
+ */
+RCTCornerInsets RCTGetCornerInsets(RCTCornerRadii cornerRadii,
+ UIEdgeInsets borderInsets);
+
+/**
+ * Create a CGPath representing a rounded rectangle with the specified bounds
+ * and corner insets. Note that the CGPathRef must be released by the caller.
+ */
+CGPathRef RCTPathCreateWithRoundedRect(CGRect bounds,
+ RCTCornerInsets cornerInsets,
+ const CGAffineTransform *transform);
+
+/**
+ * Draw a CSS-compliant border as an image. You can determine if it's scalable
+ * by inspecting the image's `capInsets`.
+ *
+ * `borderInsets` defines the border widths for each edge.
+ */
+UIImage *RCTGetBorderImage(RCTBorderStyle borderStyle,
+ CGSize viewSize,
+ RCTCornerRadii cornerRadii,
+ UIEdgeInsets borderInsets,
+ RCTBorderColors borderColors,
+ CGColorRef backgroundColor,
+ BOOL drawToEdge);
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h
new file mode 100644
index 00000000..c3d7acdf
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBorderStyle.h
@@ -0,0 +1,15 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+typedef NS_ENUM(NSInteger, RCTBorderStyle) {
+ RCTBorderStyleUnset = 0,
+ RCTBorderStyleSolid,
+ RCTBorderStyleDotted,
+ RCTBorderStyleDashed,
+};
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge+Private.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge+Private.h
new file mode 100644
index 00000000..1995801f
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge+Private.h
@@ -0,0 +1,161 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+#import
+
+#import
+
+@class RCTModuleData;
+@protocol RCTJavaScriptExecutor;
+
+RCT_EXTERN NSArray *RCTGetModuleClasses(void);
+
+RCT_EXTERN __attribute__((weak)) void RCTFBQuickPerformanceLoggerConfigureHooks(JSGlobalContextRef ctx);
+
+#if RCT_DEBUG
+RCT_EXTERN void RCTVerifyAllModulesExported(NSArray *extraModules);
+#endif
+
+@interface RCTBridge ()
+
+// Private designated initializer
+- (instancetype)initWithDelegate:(id)delegate
+ bundleURL:(NSURL *)bundleURL
+ moduleProvider:(RCTBridgeModuleListProvider)block
+ launchOptions:(NSDictionary *)launchOptions NS_DESIGNATED_INITIALIZER;
+
+// Used for the profiler flow events between JS and native
+@property (nonatomic, assign) int64_t flowID;
+@property (nonatomic, assign) CFMutableDictionaryRef flowIDMap;
+@property (nonatomic, strong) NSLock *flowIDMapLock;
+
+// Used by RCTDevMenu
+@property (nonatomic, copy) NSString *bridgeDescription;
+
++ (instancetype)currentBridge;
++ (void)setCurrentBridge:(RCTBridge *)bridge;
+
+/**
+ * Bridge setup code - creates an instance of RCTBachedBridge. Exposed for
+ * test only
+ */
+- (void)setUp;
+
+/**
+ * This method is used to invoke a callback that was registered in the
+ * JavaScript application context. Safe to call from any thread.
+ */
+- (void)enqueueCallback:(NSNumber *)cbID args:(NSArray *)args;
+
+/**
+ * This property is mostly used on the main thread, but may be touched from
+ * a background thread if the RCTBridge happens to deallocate on a background
+ * thread. Therefore, we want all writes to it to be seen atomically.
+ */
+@property (atomic, strong) RCTBridge *batchedBridge;
+
+/**
+ * The block that creates the modules' instances to be added to the bridge.
+ * Exposed for RCTCxxBridge
+ */
+@property (nonatomic, copy, readonly) RCTBridgeModuleListProvider moduleProvider;
+
+/**
+ * Used by RCTDevMenu to override the `hot` param of the current bundleURL.
+ */
+@property (nonatomic, strong, readwrite) NSURL *bundleURL;
+
+@end
+
+@interface RCTBridge (RCTCxxBridge)
+
+/**
+ * Used by RCTModuleData
+ */
+
+@property (nonatomic, weak, readonly) RCTBridge *parentBridge;
+
+/**
+ * Used by RCTModuleData
+ */
+@property (nonatomic, assign, readonly) BOOL moduleSetupComplete;
+
+/**
+ * Called on the child bridge to run the executor and start loading.
+ */
+- (void)start;
+
+/**
+ * Used by RCTModuleData to register the module for frame updates after it is
+ * lazily initialized.
+ */
+- (void)registerModuleForFrameUpdates:(id)module
+ withModuleData:(RCTModuleData *)moduleData;
+
+/**
+ * Dispatch work to a module's queue - this is also suports the fake RCTJSThread
+ * queue. Exposed for the RCTProfiler
+ */
+- (void)dispatchBlock:(dispatch_block_t)block queue:(dispatch_queue_t)queue;
+
+/**
+ * Get the module data for a given module name. Used by UIManager to implement
+ * the `dispatchViewManagerCommand` method.
+ */
+- (RCTModuleData *)moduleDataForName:(NSString *)moduleName;
+
+/**
+* Registers additional classes with the ModuleRegistry.
+*/
+- (void)registerAdditionalModuleClasses:(NSArray *)newModules;
+
+/**
+ * Systrace profiler toggling methods exposed for the RCTDevMenu
+ */
+- (void)startProfiling;
+- (void)stopProfiling:(void (^)(NSData *))callback;
+
+/**
+ * Synchronously call a specific native module's method and return the result
+ */
+- (id)callNativeModule:(NSUInteger)moduleID
+ method:(NSUInteger)methodID
+ params:(NSArray *)params;
+
+/**
+ * Hook exposed for RCTLog to send logs to JavaScript when not running in JSC
+ */
+- (void)logMessage:(NSString *)message level:(NSString *)level;
+
+/**
+ * Allow super fast, one time, timers to skip the queue and be directly executed
+ */
+- (void)_immediatelyCallTimer:(NSNumber *)timer;
+
+@end
+
+@interface RCTBridge (JavaScriptCore)
+
+/**
+ * The raw JSGlobalContextRef used by the bridge.
+ */
+@property (nonatomic, readonly, assign) JSGlobalContextRef jsContextRef;
+
+@end
+
+@interface RCTBridge (Inspector)
+
+@property (nonatomic, readonly, getter=isInspectable) BOOL inspectable;
+
+@end
+
+@interface RCTCxxBridge : RCTBridge
+
+- (instancetype)initWithParentBridge:(RCTBridge *)bridge NS_DESIGNATED_INITIALIZER;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h
new file mode 100644
index 00000000..2a7eabe5
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridge.h
@@ -0,0 +1,220 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import
+#import
+#import
+#import
+#import
+
+@class JSValue;
+@class RCTBridge;
+@class RCTEventDispatcher;
+@class RCTPerformanceLogger;
+
+/**
+ * This notification fires when the bridge initializes.
+ */
+RCT_EXTERN NSString *const RCTJavaScriptWillStartLoadingNotification;
+
+
+/**
+ * This notification fires when the bridge starts executing the JS bundle.
+ */
+RCT_EXTERN NSString *const RCTJavaScriptWillStartExecutingNotification;
+
+/**
+ * This notification fires when the bridge has finished loading the JS bundle.
+ */
+RCT_EXTERN NSString *const RCTJavaScriptDidLoadNotification;
+
+/**
+ * This notification fires when the bridge failed to load the JS bundle. The
+ * `error` key can be used to determine the error that occurred.
+ */
+RCT_EXTERN NSString *const RCTJavaScriptDidFailToLoadNotification;
+
+/**
+ * This notification fires each time a native module is instantiated. The
+ * `module` key will contain a reference to the newly-created module instance.
+ * Note that this notification may be fired before the module is available via
+ * the `[bridge moduleForClass:]` method.
+ */
+RCT_EXTERN NSString *const RCTDidInitializeModuleNotification;
+
+/**
+ * This notification fires just before the bridge starts processing a request to
+ * reload.
+ */
+RCT_EXTERN NSString *const RCTBridgeWillReloadNotification;
+
+/**
+ * This notification fires just before the bridge begins downloading a script
+ * from the packager.
+ */
+RCT_EXTERN NSString *const RCTBridgeWillDownloadScriptNotification;
+
+/**
+ * This notification fires just after the bridge finishes downloading a script
+ * from the packager.
+ */
+RCT_EXTERN NSString *const RCTBridgeDidDownloadScriptNotification;
+
+/**
+ * Key for the RCTSource object in the RCTBridgeDidDownloadScriptNotification
+ * userInfo dictionary.
+ */
+RCT_EXTERN NSString *const RCTBridgeDidDownloadScriptNotificationSourceKey;
+
+/**
+ * This block can be used to instantiate modules that require additional
+ * init parameters, or additional configuration prior to being used.
+ * The bridge will call this block to instatiate the modules, and will
+ * be responsible for invalidating/releasing them when the bridge is destroyed.
+ * For this reason, the block should always return new module instances, and
+ * module instances should not be shared between bridges.
+ */
+typedef NSArray> *(^RCTBridgeModuleListProvider)(void);
+
+/**
+ * This function returns the module name for a given class.
+ */
+RCT_EXTERN NSString *RCTBridgeModuleNameForClass(Class bridgeModuleClass);
+
+/**
+ * Async batched bridge used to communicate with the JavaScript application.
+ */
+@interface RCTBridge : NSObject
+
+/**
+ * Creates a new bridge with a custom RCTBridgeDelegate.
+ *
+ * All the interaction with the JavaScript context should be done using the bridge
+ * instance of the RCTBridgeModules. Modules will be automatically instantiated
+ * using the default contructor, but you can optionally pass in an array of
+ * pre-initialized module instances if they require additional init parameters
+ * or configuration.
+ */
+- (instancetype)initWithDelegate:(id)delegate
+ launchOptions:(NSDictionary *)launchOptions;
+
+/**
+ * DEPRECATED: Use initWithDelegate:launchOptions: instead
+ *
+ * The designated initializer. This creates a new bridge on top of the specified
+ * executor. The bridge should then be used for all subsequent communication
+ * with the JavaScript code running in the executor. Modules will be automatically
+ * instantiated using the default contructor, but you can optionally pass in an
+ * array of pre-initialized module instances if they require additional init
+ * parameters or configuration.
+ */
+- (instancetype)initWithBundleURL:(NSURL *)bundleURL
+ moduleProvider:(RCTBridgeModuleListProvider)block
+ launchOptions:(NSDictionary *)launchOptions;
+
+/**
+ * This method is used to call functions in the JavaScript application context.
+ * It is primarily intended for use by modules that require two-way communication
+ * with the JavaScript code. Safe to call from any thread.
+ */
+- (void)enqueueJSCall:(NSString *)moduleDotMethod args:(NSArray *)args;
+- (void)enqueueJSCall:(NSString *)module method:(NSString *)method args:(NSArray *)args completion:(dispatch_block_t)completion;
+
+/**
+ * This method registers the file path of an additional JS segment by its ID.
+ *
+ * @experimental
+ */
+- (void)registerSegmentWithId:(NSUInteger)segmentId path:(NSString *)path;
+
+/**
+ * Retrieve a bridge module instance by name or class. Note that modules are
+ * lazily instantiated, so calling these methods for the first time with a given
+ * module name/class may cause the class to be sychronously instantiated,
+ * potentially blocking both the calling thread and main thread for a short time.
+ */
+- (id)moduleForName:(NSString *)moduleName;
+- (id)moduleForClass:(Class)moduleClass;
+
+/**
+ * Convenience method for retrieving all modules conforming to a given protocol.
+ * Modules will be sychronously instantiated if they haven't already been,
+ * potentially blocking both the calling thread and main thread for a short time.
+ */
+- (NSArray *)modulesConformingToProtocol:(Protocol *)protocol;
+
+/**
+ * Test if a module has been initialized. Use this prior to calling
+ * `moduleForClass:` or `moduleForName:` if you do not want to cause the module
+ * to be instantiated if it hasn't been already.
+ */
+- (BOOL)moduleIsInitialized:(Class)moduleClass;
+
+/**
+ * Retrieve an extra module that gets bound to the JS context, if any.
+ */
+- (id)jsBoundExtraModuleForClass:(Class)moduleClass;
+
+/**
+ * All registered bridge module classes.
+ */
+@property (nonatomic, copy, readonly) NSArray *moduleClasses;
+
+/**
+ * URL of the script that was loaded into the bridge.
+ */
+@property (nonatomic, strong, readonly) NSURL *bundleURL;
+
+/**
+ * The class of the executor currently being used. Changes to this value will
+ * take effect after the bridge is reloaded.
+ */
+@property (nonatomic, strong) Class executorClass;
+
+/**
+ * The delegate provided during the bridge initialization
+ */
+@property (nonatomic, weak, readonly) id delegate;
+
+/**
+ * The launch options that were used to initialize the bridge.
+ */
+@property (nonatomic, copy, readonly) NSDictionary *launchOptions;
+
+/**
+ * Use this to check if the bridge is currently loading.
+ */
+@property (nonatomic, readonly, getter=isLoading) BOOL loading;
+
+/**
+ * Use this to check if the bridge has been invalidated.
+ */
+@property (nonatomic, readonly, getter=isValid) BOOL valid;
+
+/**
+ * Link to the Performance Logger that logs React Native perf events.
+ */
+@property (nonatomic, readonly, strong) RCTPerformanceLogger *performanceLogger;
+
+/**
+ * Reload the bundle and reset executor & modules. Safe to call from any thread.
+ */
+- (void)reload;
+
+/**
+ * Inform the bridge, and anything subscribing to it, that it should reload.
+ */
+- (void)requestReload __deprecated_msg("Call reload instead");
+
+/**
+ * Says whether bridge has started receiving calls from javascript.
+ */
+- (BOOL)isBatchActive;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h
new file mode 100644
index 00000000..b457e87d
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeDelegate.h
@@ -0,0 +1,75 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+@class RCTBridge;
+@protocol RCTBridgeModule;
+
+@protocol RCTBridgeDelegate
+
+/**
+ * The location of the JavaScript source file. When running from the packager
+ * this should be an absolute URL, e.g. `http://localhost:8081/index.ios.bundle`.
+ * When running from a locally bundled JS file, this should be a `file://` url
+ * pointing to a path inside the app resources, e.g. `file://.../main.jsbundle`.
+ */
+- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge;
+
+@optional
+
+/**
+ * The bridge initializes any registered RCTBridgeModules automatically, however
+ * if you wish to instantiate your own module instances, you can return them
+ * from this method.
+ *
+ * Note: You should always return a new instance for each call, rather than
+ * returning the same instance each time the bridge is reloaded. Module instances
+ * should not be shared between bridges, and this may cause unexpected behavior.
+ *
+ * It is also possible to override standard modules with your own implementations
+ * by returning a class with the same `moduleName` from this method, but this is
+ * not recommended in most cases - if the module methods and behavior do not
+ * match exactly, it may lead to bugs or crashes.
+ */
+- (NSArray> *)extraModulesForBridge:(RCTBridge *)bridge;
+
+/**
+ * Configure whether the JSCExecutor created should use the system JSC API or
+ * alternative hooks provided. When returning YES from this method, you must have
+ * previously called facebook::react::setCustomJSCWrapper.
+ *
+ * @experimental
+ */
+- (BOOL)shouldBridgeUseCustomJSC:(RCTBridge *)bridge;
+
+/**
+* The bridge will call this method when a module been called from JS
+* cannot be found among registered modules.
+* It should return YES if the module with name 'moduleName' was registered
+* in the implementation, and the system must attempt to look for it again among registered.
+* If the module was not registered, return NO to prevent further searches.
+*/
+- (BOOL)bridge:(RCTBridge *)bridge didNotFindModule:(NSString *)moduleName;
+
+/**
+ * The bridge will automatically attempt to load the JS source code from the
+ * location specified by the `sourceURLForBridge:` method, however, if you want
+ * to handle loading the JS yourself, you can do so by implementing this method.
+ */
+- (void)loadSourceForBridge:(RCTBridge *)bridge
+ onProgress:(RCTSourceLoadProgressBlock)onProgress
+ onComplete:(RCTSourceLoadBlock)loadCallback;
+
+/**
+ * Similar to loadSourceForBridge:onProgress:onComplete: but without progress
+ * reporting.
+ */
+- (void)loadSourceForBridge:(RCTBridge *)bridge
+ withBlock:(RCTSourceLoadBlock)loadCallback;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeMethod.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeMethod.h
new file mode 100644
index 00000000..04202c6a
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeMethod.h
@@ -0,0 +1,38 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+@class RCTBridge;
+
+typedef NS_ENUM(NSUInteger, RCTFunctionType) {
+ RCTFunctionTypeNormal,
+ RCTFunctionTypePromise,
+ RCTFunctionTypeSync,
+};
+
+static inline const char *RCTFunctionDescriptorFromType(RCTFunctionType type) {
+ switch (type) {
+ case RCTFunctionTypeNormal:
+ return "async";
+ case RCTFunctionTypePromise:
+ return "promise";
+ case RCTFunctionTypeSync:
+ return "sync";
+ }
+};
+
+@protocol RCTBridgeMethod
+
+@property (nonatomic, readonly) const char *JSMethodName;
+@property (nonatomic, readonly) RCTFunctionType functionType;
+
+- (id)invokeWithBridge:(RCTBridge *)bridge
+ module:(id)module
+ arguments:(NSArray *)arguments;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h
new file mode 100644
index 00000000..07116bb8
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBridgeModule.h
@@ -0,0 +1,312 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import
+
+@class RCTBridge;
+@protocol RCTBridgeMethod;
+
+/**
+ * The type of a block that is capable of sending a response to a bridged
+ * operation. Use this for returning callback methods to JS.
+ */
+typedef void (^RCTResponseSenderBlock)(NSArray *response);
+
+/**
+ * The type of a block that is capable of sending an error response to a
+ * bridged operation. Use this for returning error information to JS.
+ */
+typedef void (^RCTResponseErrorBlock)(NSError *error);
+
+/**
+ * Block that bridge modules use to resolve the JS promise waiting for a result.
+ * Nil results are supported and are converted to JS's undefined value.
+ */
+typedef void (^RCTPromiseResolveBlock)(id result);
+
+/**
+ * Block that bridge modules use to reject the JS promise waiting for a result.
+ * The error may be nil but it is preferable to pass an NSError object for more
+ * precise error messages.
+ */
+typedef void (^RCTPromiseRejectBlock)(NSString *code, NSString *message, NSError *error);
+
+/**
+ * This constant can be returned from +methodQueue to force module
+ * methods to be called on the JavaScript thread. This can have serious
+ * implications for performance, so only use this if you're sure it's what
+ * you need.
+ *
+ * NOTE: RCTJSThread is not a real libdispatch queue
+ */
+RCT_EXTERN dispatch_queue_t RCTJSThread;
+
+RCT_EXTERN_C_BEGIN
+
+typedef struct RCTMethodInfo {
+ const char *const jsName;
+ const char *const objcName;
+ const BOOL isSync;
+} RCTMethodInfo;
+
+RCT_EXTERN_C_END
+
+/**
+ * Provides the interface needed to register a bridge module.
+ */
+@protocol RCTBridgeModule
+
+/**
+ * Place this macro in your class implementation to automatically register
+ * your module with the bridge when it loads. The optional js_name argument
+ * will be used as the JS module name. If omitted, the JS module name will
+ * match the Objective-C class name.
+ */
+#define RCT_EXPORT_MODULE(js_name) \
+RCT_EXTERN void RCTRegisterModule(Class); \
++ (NSString *)moduleName { return @#js_name; } \
++ (void)load { RCTRegisterModule(self); }
+
+// Implemented by RCT_EXPORT_MODULE
++ (NSString *)moduleName;
+
+@optional
+
+/**
+ * A reference to the RCTBridge. Useful for modules that require access
+ * to bridge features, such as sending events or making JS calls. This
+ * will be set automatically by the bridge when it initializes the module.
+ * To implement this in your module, just add `@synthesize bridge = _bridge;`
+ */
+@property (nonatomic, weak, readonly) RCTBridge *bridge;
+
+/**
+ * The queue that will be used to call all exported methods. If omitted, this
+ * will call on a default background queue, which is avoids blocking the main
+ * thread.
+ *
+ * If the methods in your module need to interact with UIKit methods, they will
+ * probably need to call those on the main thread, as most of UIKit is main-
+ * thread-only. You can tell React Native to call your module methods on the
+ * main thread by returning a reference to the main queue, like this:
+ *
+ * - (dispatch_queue_t)methodQueue
+ * {
+ * return dispatch_get_main_queue();
+ * }
+ *
+ * If you don't want to specify the queue yourself, but you need to use it
+ * inside your class (e.g. if you have internal methods that need to dispatch
+ * onto that queue), you can just add `@synthesize methodQueue = _methodQueue;`
+ * and the bridge will populate the methodQueue property for you automatically
+ * when it initializes the module.
+ */
+@property (nonatomic, strong, readonly) dispatch_queue_t methodQueue;
+
+/**
+ * Wrap the parameter line of your method implementation with this macro to
+ * expose it to JS. By default the exposed method will match the first part of
+ * the Objective-C method selector name (up to the first colon). Use
+ * RCT_REMAP_METHOD to specify the JS name of the method.
+ *
+ * For example, in ModuleName.m:
+ *
+ * - (void)doSomething:(NSString *)aString withA:(NSInteger)a andB:(NSInteger)b
+ * { ... }
+ *
+ * becomes
+ *
+ * RCT_EXPORT_METHOD(doSomething:(NSString *)aString
+ * withA:(NSInteger)a
+ * andB:(NSInteger)b)
+ * { ... }
+ *
+ * and is exposed to JavaScript as `NativeModules.ModuleName.doSomething`.
+ *
+ * ## Promises
+ *
+ * Bridge modules can also define methods that are exported to JavaScript as
+ * methods that return a Promise, and are compatible with JS async functions.
+ *
+ * Declare the last two parameters of your native method to be a resolver block
+ * and a rejecter block. The resolver block must precede the rejecter block.
+ *
+ * For example:
+ *
+ * RCT_EXPORT_METHOD(doSomethingAsync:(NSString *)aString
+ * resolver:(RCTPromiseResolveBlock)resolve
+ * rejecter:(RCTPromiseRejectBlock)reject
+ * { ... }
+ *
+ * Calling `NativeModules.ModuleName.doSomethingAsync(aString)` from
+ * JavaScript will return a promise that is resolved or rejected when your
+ * native method implementation calls the respective block.
+ *
+ */
+#define RCT_EXPORT_METHOD(method) \
+ RCT_REMAP_METHOD(, method)
+
+/**
+ * Same as RCT_EXPORT_METHOD but the method is called from JS
+ * synchronously **on the JS thread**, possibly returning a result.
+ *
+ * WARNING: in the vast majority of cases, you should use RCT_EXPORT_METHOD which
+ * allows your native module methods to be called asynchronously: calling
+ * methods synchronously can have strong performance penalties and introduce
+ * threading-related bugs to your native modules.
+ *
+ * The return type must be of object type (id) and should be serializable
+ * to JSON. This means that the hook can only return nil or JSON values
+ * (e.g. NSNumber, NSString, NSArray, NSDictionary).
+ *
+ * Calling these methods when running under the websocket executor
+ * is currently not supported.
+ */
+#define RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(method) \
+ RCT_EXPORT_SYNCHRONOUS_TYPED_METHOD(id, method)
+
+#define RCT_EXPORT_SYNCHRONOUS_TYPED_METHOD(returnType, method) \
+ RCT_REMAP_BLOCKING_SYNCHRONOUS_METHOD(, returnType, method)
+
+
+/**
+ * Similar to RCT_EXPORT_METHOD but lets you set the JS name of the exported
+ * method. Example usage:
+ *
+ * RCT_REMAP_METHOD(executeQueryWithParameters,
+ * executeQuery:(NSString *)query parameters:(NSDictionary *)parameters)
+ * { ... }
+ */
+#define RCT_REMAP_METHOD(js_name, method) \
+ _RCT_EXTERN_REMAP_METHOD(js_name, method, NO) \
+ - (void)method RCT_DYNAMIC;
+
+/**
+ * Similar to RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD but lets you set
+ * the JS name of the exported method. Example usage:
+ *
+ * RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(executeQueryWithParameters,
+ * executeQuery:(NSString *)query parameters:(NSDictionary *)parameters)
+ * { ... }
+ */
+#define RCT_REMAP_BLOCKING_SYNCHRONOUS_METHOD(js_name, returnType, method) \
+ _RCT_EXTERN_REMAP_METHOD(js_name, method, YES) \
+ - (returnType)method RCT_DYNAMIC;
+
+/**
+ * Use this macro in a private Objective-C implementation file to automatically
+ * register an external module with the bridge when it loads. This allows you to
+ * register Swift or private Objective-C classes with the bridge.
+ *
+ * For example if one wanted to export a Swift class to the bridge:
+ *
+ * MyModule.swift:
+ *
+ * @objc(MyModule) class MyModule: NSObject {
+ *
+ * @objc func doSomething(string: String! withFoo a: Int, bar b: Int) { ... }
+ *
+ * }
+ *
+ * MyModuleExport.m:
+ *
+ * #import
+ *
+ * @interface RCT_EXTERN_MODULE(MyModule, NSObject)
+ *
+ * RCT_EXTERN_METHOD(doSomething:(NSString *)string withFoo:(NSInteger)a bar:(NSInteger)b)
+ *
+ * @end
+ *
+ * This will now expose MyModule and the method to JavaScript via
+ * `NativeModules.MyModule.doSomething`
+ */
+#define RCT_EXTERN_MODULE(objc_name, objc_supername) \
+ RCT_EXTERN_REMAP_MODULE(, objc_name, objc_supername)
+
+/**
+ * Like RCT_EXTERN_MODULE, but allows setting a custom JavaScript name.
+ */
+#define RCT_EXTERN_REMAP_MODULE(js_name, objc_name, objc_supername) \
+ objc_name : objc_supername \
+ @end \
+ @interface objc_name (RCTExternModule) \
+ @end \
+ @implementation objc_name (RCTExternModule) \
+ RCT_EXPORT_MODULE(js_name)
+
+/**
+ * Use this macro in accordance with RCT_EXTERN_MODULE to export methods
+ * of an external module.
+ */
+#define RCT_EXTERN_METHOD(method) \
+ _RCT_EXTERN_REMAP_METHOD(, method, NO)
+
+/**
+ * Use this macro in accordance with RCT_EXTERN_MODULE to export methods
+ * of an external module that should be invoked synchronously.
+ */
+#define RCT_EXTERN__BLOCKING_SYNCHRONOUS_METHOD(method) \
+ _RCT_EXTERN_REMAP_METHOD(, method, YES)
+
+/**
+ * Like RCT_EXTERN_REMAP_METHOD, but allows setting a custom JavaScript name
+ * and also whether this method is synchronous.
+ */
+#define _RCT_EXTERN_REMAP_METHOD(js_name, method, is_blocking_synchronous_method) \
+ + (const RCTMethodInfo *)RCT_CONCAT(__rct_export__, RCT_CONCAT(js_name, RCT_CONCAT(__LINE__, __COUNTER__))) { \
+ static RCTMethodInfo config = {#js_name, #method, is_blocking_synchronous_method}; \
+ return &config; \
+ }
+
+/**
+ * Most modules can be used from any thread. All of the modules exported non-sync method will be called on its
+ * methodQueue, and the module will be constructed lazily when its first invoked. Some modules have main need to access
+ * information that's main queue only (e.g. most UIKit classes). Since we don't want to dispatch synchronously to the
+ * main thread to this safely, we construct these moduels and export their constants ahead-of-time.
+ *
+ * Note that when set to false, the module constructor will be called from any thread.
+ *
+ * This requirement is currently inferred by checking if the module has a custom initializer or if there's exported
+ * constants. In the future, we'll stop automatically inferring this and instead only rely on this method.
+ */
++ (BOOL)requiresMainQueueSetup;
+
+/**
+ * Injects methods into JS. Entries in this array are used in addition to any
+ * methods defined using the macros above. This method is called only once,
+ * before registration.
+ */
+- (NSArray> *)methodsToExport;
+
+/**
+ * Injects constants into JS. These constants are made accessible via NativeModules.ModuleName.X. It is only called once
+ * for the lifetime of the bridge, so it is not suitable for returning dynamic values, but may be used for long-lived
+ * values such as session keys, that are regenerated only as part of a reload of the entire React application.
+ *
+ * If you implement this method and do not implement `requiresMainThreadSetup`, you will trigger deprecated logic
+ * that eagerly initializes your module on bridge startup. In the future, this behaviour will be changed to default
+ * to initializing lazily, and even modules with constants will be initialized lazily.
+ */
+- (NSDictionary *)constantsToExport;
+
+/**
+ * Notifies the module that a batch of JS method invocations has just completed.
+ */
+- (void)batchDidComplete;
+
+/**
+ * Notifies the module that the active batch of JS method invocations has been
+ * partially flushed.
+ *
+ * This occurs before -batchDidComplete, and more frequently.
+ */
+- (void)partialBatchDidFlush;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBundleURLProvider.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBundleURLProvider.h
new file mode 100644
index 00000000..23ed40cb
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTBundleURLProvider.h
@@ -0,0 +1,98 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#if defined(__cplusplus)
+extern "C" {
+#endif
+
+extern NSString *const RCTBundleURLProviderUpdatedNotification;
+
+extern const NSUInteger kRCTBundleURLProviderDefaultPort;
+
+#if defined(__cplusplus)
+}
+#endif
+
+@interface RCTBundleURLProvider : NSObject
+
+/**
+ * Set default settings on NSUserDefaults.
+ */
+- (void)setDefaults;
+
+/**
+ * Reset every settings to default.
+ */
+- (void)resetToDefaults;
+
+/**
+ * Returns the jsBundleURL for a given bundle entrypoint and
+ * the fallback offline JS bundle if the packager is not running.
+ * if resourceName or extension are nil, "main" and "jsbundle" will be
+ * used, respectively.
+ */
+- (NSURL *)jsBundleURLForBundleRoot:(NSString *)bundleRoot
+ fallbackResource:(NSString *)resourceName
+ fallbackExtension:(NSString *)extension;
+
+/**
+ * Returns the jsBundleURL for a given bundle entrypoint and
+ * the fallback offline JS bundle if the packager is not running.
+ */
+- (NSURL *)jsBundleURLForBundleRoot:(NSString *)bundleRoot
+ fallbackResource:(NSString *)resourceName;
+
+/**
+ * Returns the jsBundleURL for a given bundle entrypoint and
+ * the fallback offline JS bundle. If resourceName or extension
+ * are nil, "main" and "jsbundle" will be used, respectively.
+ */
+- (NSURL *)jsBundleURLForFallbackResource:(NSString *)resourceName
+ fallbackExtension:(NSString *)extension;
+
+/**
+ * Returns the resourceURL for a given bundle entrypoint and
+ * the fallback offline resource file if the packager is not running.
+ */
+- (NSURL *)resourceURLForResourceRoot:(NSString *)root
+ resourceName:(NSString *)name
+ resourceExtension:(NSString *)extension
+ offlineBundle:(NSBundle *)offlineBundle;
+
+/**
+ * The IP address or hostname of the packager.
+ */
+@property (nonatomic, copy) NSString *jsLocation;
+
+@property (nonatomic, assign) BOOL enableLiveReload;
+@property (nonatomic, assign) BOOL enableMinification;
+@property (nonatomic, assign) BOOL enableDev;
+
++ (instancetype)sharedSettings;
+
+/**
+ Given a hostname for the packager and a bundle root, returns the URL to the js bundle. Generally you should use the
+ instance method -jsBundleURLForBundleRoot:fallbackResource: which includes logic to guess if the packager is running
+ and fall back to a pre-packaged bundle if it is not.
+ */
++ (NSURL *)jsBundleURLForBundleRoot:(NSString *)bundleRoot
+ packagerHost:(NSString *)packagerHost
+ enableDev:(BOOL)enableDev
+ enableMinification:(BOOL)enableMinification;
+
+/**
+ * Given a hostname for the packager and a resource path (including "/"), return the URL to the resource.
+ * In general, please use the instance method to decide if the packager is running and fallback to the pre-packaged
+ * resource if it is not: -resourceURLForResourceRoot:resourceName:resourceExtension:offlineBundle:
+ */
++ (NSURL *)resourceURLForResourcePath:(NSString *)path
+ packagerHost:(NSString *)packagerHost
+ query:(NSString *)query;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTClipboard.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTClipboard.h
new file mode 100644
index 00000000..31771681
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTClipboard.h
@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+@interface RCTClipboard : NSObject
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h
new file mode 100644
index 00000000..639c220d
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponent.h
@@ -0,0 +1,56 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import
+
+/**
+ * These block types can be used for mapping input event handlers from JS to view
+ * properties. Unlike JS method callbacks, these can be called multiple times.
+ */
+typedef void (^RCTDirectEventBlock)(NSDictionary *body);
+typedef void (^RCTBubblingEventBlock)(NSDictionary *body);
+
+/**
+ * Logical node in a tree of application components. Both `ShadowView` and
+ * `UIView` conforms to this. Allows us to write utilities that reason about
+ * trees generally.
+ */
+@protocol RCTComponent
+
+@property (nonatomic, copy) NSNumber *reactTag;
+
+- (void)insertReactSubview:(id)subview atIndex:(NSInteger)atIndex;
+- (void)removeReactSubview:(id)subview;
+- (NSArray> *)reactSubviews;
+- (id)reactSuperview;
+- (NSNumber *)reactTagAtPoint:(CGPoint)point;
+
+// View/ShadowView is a root view
+- (BOOL)isReactRootView;
+
+/**
+ * Called each time props have been set.
+ * Not all props have to be set - React can set only changed ones.
+ * @param changedProps String names of all set props.
+ */
+- (void)didSetProps:(NSArray *)changedProps;
+
+/**
+ * Called each time subviews have been updated
+ */
+- (void)didUpdateReactSubviews;
+
+@end
+
+// TODO: this is kinda dumb - let's come up with a
+// better way of identifying root React views please!
+static inline BOOL RCTIsReactRootView(NSNumber *reactTag)
+{
+ return reactTag.integerValue % 10 == 1;
+}
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponentData.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponentData.h
new file mode 100644
index 00000000..f2080992
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTComponentData.h
@@ -0,0 +1,34 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import
+#import
+#import
+
+@class RCTBridge;
+@class RCTShadowView;
+@class UIView;
+
+@interface RCTComponentData : NSObject
+
+@property (nonatomic, readonly) Class managerClass;
+@property (nonatomic, copy, readonly) NSString *name;
+@property (nonatomic, weak, readonly) RCTViewManager *manager;
+
+- (instancetype)initWithManagerClass:(Class)managerClass
+ bridge:(RCTBridge *)bridge NS_DESIGNATED_INITIALIZER;
+
+- (UIView *)createViewWithTag:(NSNumber *)tag;
+- (RCTShadowView *)createShadowViewWithTag:(NSNumber *)tag;
+- (void)setProps:(NSDictionary *)props forView:(id)view;
+- (void)setProps:(NSDictionary *)props forShadowView:(RCTShadowView *)shadowView;
+
+- (NSDictionary *)viewConfig;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert+CoreLocation.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert+CoreLocation.h
new file mode 100644
index 00000000..bfe61029
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert+CoreLocation.h
@@ -0,0 +1,18 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+
+#import
+
+@interface RCTConvert (CoreLocation)
+
++ (CLLocationDegrees)CLLocationDegrees:(id)json;
++ (CLLocationDistance)CLLocationDistance:(id)json;
++ (CLLocationCoordinate2D)CLLocationCoordinate2D:(id)json;
+
+@end
diff --git a/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h
new file mode 100644
index 00000000..5780c5f5
--- /dev/null
+++ b/ios/build/Build/Products/Debug-iphonesimulator/include/React/RCTConvert.h
@@ -0,0 +1,259 @@
+/**
+ * Copyright (c) 2015-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import
+#import
+
+#import
+#import
+#import
+#import
+#import
+#import
+#import
+
+/**
+ * This class provides a collection of conversion functions for mapping
+ * JSON objects to native types and classes. These are useful when writing
+ * custom RCTViewManager setter methods.
+ */
+@interface RCTConvert : NSObject
+
++ (id)id:(id)json;
+
++ (BOOL)BOOL:(id)json;
++ (double)double:(id)json;
++ (float)float:(id)json;
++ (int)int:(id)json;
+
++ (int64_t)int64_t:(id)json;
++ (uint64_t)uint64_t:(id)json;
+
++ (NSInteger)NSInteger:(id)json;
++ (NSUInteger)NSUInteger:(id)json;
+
++ (NSArray *)NSArray:(id)json;
++ (NSDictionary *)NSDictionary:(id)json;
++ (NSString *)NSString:(id)json;
++ (NSNumber *)NSNumber:(id)json;
+
++ (NSSet *)NSSet:(id)json;
++ (NSData *)NSData:(id)json;
++ (NSIndexSet *)NSIndexSet:(id)json;
+
++ (NSURLRequestCachePolicy)NSURLRequestCachePolicy:(id)json;
++ (NSURL *)NSURL:(id)json;
++ (NSURLRequest *)NSURLRequest:(id)json;
+
+typedef NSURL RCTFileURL;
++ (RCTFileURL *)RCTFileURL:(id)json;
+
++ (NSDate *)NSDate:(id)json;
++ (NSLocale *)NSLocale:(id)json;
++ (NSTimeZone *)NSTimeZone:(id)json;
++ (NSTimeInterval)NSTimeInterval:(id)json;
+
++ (NSLineBreakMode)NSLineBreakMode:(id)json;
++ (NSTextAlignment)NSTextAlignment:(id)json;
++ (NSUnderlineStyle)NSUnderlineStyle:(id)json;
++ (NSWritingDirection)NSWritingDirection:(id)json;
++ (UITextAutocapitalizationType)UITextAutocapitalizationType:(id)json;
++ (UITextFieldViewMode)UITextFieldViewMode:(id)json;
++ (UIKeyboardType)UIKeyboardType:(id)json;
++ (UIKeyboardAppearance)UIKeyboardAppearance:(id)json;
++ (UIReturnKeyType)UIReturnKeyType:(id)json;
+#if !TARGET_OS_TV
++ (UIDataDetectorTypes)UIDataDetectorTypes:(id)json;
+#endif
+
++ (UIViewContentMode)UIViewContentMode:(id)json;
+#if !TARGET_OS_TV
++ (UIBarStyle)UIBarStyle:(id)json;
+#endif
+
++ (CGFloat)CGFloat:(id)json;
++ (CGPoint)CGPoint:(id)json;
++ (CGSize)CGSize:(id)json;
++ (CGRect)CGRect:(id)json;
++ (UIEdgeInsets)UIEdgeInsets:(id)json;
+
++ (CGLineCap)CGLineCap:(id)json;
++ (CGLineJoin)CGLineJoin:(id)json;
+
++ (CGAffineTransform)CGAffineTransform:(id)json;
+
++ (UIColor *)UIColor:(id)json;
++ (CGColorRef)CGColor:(id)json CF_RETURNS_NOT_RETAINED;
+
++ (YGValue)YGValue:(id)json;
+
++ (NSArray *)NSArrayArray:(id)json;
++ (NSArray *)NSStringArray:(id)json;
++ (NSArray *> *)NSStringArrayArray:(id)json;
++ (NSArray *)NSDictionaryArray:(id)json;
++ (NSArray *)NSURLArray:(id)json;
++ (NSArray *)RCTFileURLArray:(id)json;
++ (NSArray *)NSNumberArray:(id)json;
++ (NSArray *)UIColorArray:(id)json;
+
+typedef NSArray CGColorArray;
++ (CGColorArray *)CGColorArray:(id)json;
+
+/**
+ * Convert a JSON object to a Plist-safe equivalent by stripping null values.
+ */
+typedef id NSPropertyList;
++ (NSPropertyList)NSPropertyList:(id)json;
+
+typedef BOOL css_backface_visibility_t;
++ (YGOverflow)YGOverflow:(id)json;
++ (YGDisplay)YGDisplay:(id)json;
++ (css_backface_visibility_t)css_backface_visibility_t:(id)json;
++ (YGFlexDirection)YGFlexDirection:(id)json;
++ (YGJustify)YGJustify:(id)json;
++ (YGAlign)YGAlign:(id)json;
++ (YGPositionType)YGPositionType:(id)json;
++ (YGWrap)YGWrap:(id)json;
++ (YGDirection)YGDirection:(id)json;
+
++ (RCTPointerEvents)RCTPointerEvents:(id)json;
++ (RCTAnimationType)RCTAnimationType:(id)json;
++ (RCTBorderStyle)RCTBorderStyle:(id)json;
++ (RCTTextDecorationLineType)RCTTextDecorationLineType:(id)json;
+
+@end
+
+@interface RCTConvert (Deprecated)
+
+/**
+ * Use lightweight generics syntax instead, e.g. NSArray
+ */
+typedef NSArray NSArrayArray __deprecated_msg("Use NSArray